Lines Matching refs:outcome
79 enum outcome { SKIP=2, OK=1, FAIL=0 }; enum
80 static enum outcome cur_test_outcome = 0;
106 static enum outcome
153 static enum outcome
157 int outcome; in testcase_run_bare_() local
180 outcome = cur_test_outcome; in testcase_run_bare_()
184 outcome = FAIL; in testcase_run_bare_()
187 return outcome; in testcase_run_bare_()
193 static enum outcome
315 enum outcome outcome; local
336 outcome = testcase_run_forked_(group, testcase);
341 outcome = testcase_run_bare_(testcase);
344 if (outcome == OK) {
347 } else if (outcome == SKIP) {
356 exit(outcome==OK ? 0 : (outcome==SKIP?MAGIC_EXITCODE : 1));
359 return (int)outcome;