aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/posix/system.c
blob: d5d63176f841634626461a4c4c03c81e26f5fd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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);
}