aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/posix/system.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/tests/posix/system.c')
-rw-r--r--lib/mlibc/tests/posix/system.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/mlibc/tests/posix/system.c b/lib/mlibc/tests/posix/system.c
deleted file mode 100644
index d5d6317..0000000
--- a/lib/mlibc/tests/posix/system.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <assert.h>
-#include <stdlib.h>
-#include <sys/wait.h>
-
-int main() {
- int res;
-
- res = system("true");
- assert(WIFEXITED(res));
- assert(WEXITSTATUS(res) == 0);
-
- res = system("false");
- assert(WIFEXITED(res));
- assert(WEXITSTATUS(res) == 1);
-
- res = system(NULL);
- assert(res == 1);
-}