Lines Matching refs:status
41 int status = 0, status1 = 0, status2 = 0;
43 status = system("./secilc -M -c 24 test/integration.cil &> /dev/null");
45 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
58 CuAssertIntEquals(tc, 1, WIFEXITED(status));
59 CuAssertIntEquals(tc, 0, WEXITSTATUS(status));
67 int status = 0;
69 status = system("./secilc -M -c 24 test/policy.cil &> /dev/null");
71 if (WIFSIGNALED(status) && (WTERMSIG(status) == SIGINT || WTERMSIG(status) == SIGQUIT))
74 CuAssertIntEquals(tc, 1, WIFEXITED(status));
75 CuAssertIntEquals(tc, 0, WEXITSTATUS(status));