Lines Matching refs:outcome
76 enum outcome { SKIP=2, OK=1, FAIL=0 }; enum
77 static enum outcome cur_test_outcome = 0;
91 static enum outcome
95 int outcome; in testcase_run_bare_() local
106 outcome = cur_test_outcome; in testcase_run_bare_()
110 outcome = FAIL; in testcase_run_bare_()
113 return outcome; in testcase_run_bare_()
120 static enum outcome
226 enum outcome outcome; local
247 outcome = testcase_run_forked_(group, testcase);
252 outcome = testcase_run_bare_(testcase);
255 if (outcome == OK) {
259 } else if (outcome == SKIP) {
270 exit(outcome==OK ? 0 : (outcome==SKIP?MAGIC_EXITCODE : 1));
273 return (int)outcome;