Disable spawnve_test (#14)

Multiple users have reported that this test fails, for reasons that
are currently unknown. It's possible that, some type of environment
variable configuration, e.g. PATH, CC, etc. is causing the failure.

Once the root cause is identified and addressed we'll re-enable it.
Anyone who is able to help us do that, please comment on the issue.
This commit is contained in:
Justine Tunney 2021-01-16 12:43:06 -08:00
parent 58d5cf1c27
commit eb5d094715

View file

@ -27,6 +27,17 @@
#include "libc/sysv/consts/fileno.h"
#include "libc/testlib/testlib.h"
/*
* TODO: Re-enable me.
*
* Multiple users have reported that this test fails, for reasons that
* are currently unknown. It's possible that, some type of environment
* variable configuration, e.g. PATH, CC, etc. is causing the failure.
*
* https://github.com/jart/cosmopolitan/issues/14
*/
#if 0
#define CMD (IsWindows() ? "cmd" : "sh")
#define ARG (IsWindows() ? "/c" : "-c")
#define COD (IsWindows() ? "echo %BOOP%" : "echo $BOOP")
@ -71,3 +82,5 @@ static textstartup void onspawnself() {
}
}
const void *const onspawnself_ctor[] initarray = {onspawnself};
#endif /* #if 0 */