mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-03 07:29:23 +00:00
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:
parent
58d5cf1c27
commit
eb5d094715
1 changed files with 13 additions and 0 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue