Lines Matching refs:test_status
5 static test_status_t test_status = test_status_pass; variable
18 test_status = test_status_skip; in test_skip()
31 test_status = test_status_fail; in test_fail()
35 test_status_string(test_status_t test_status) in test_status_string() argument
38 switch (test_status) { in test_status_string()
51 test_status = test_status_pass; in p_test_init()
59 test_counts[test_status]++; in p_test_fini()
60 malloc_printf("%s: %s\n", test_name, test_status_string(test_status)); in p_test_fini()
84 if (test_status > ret) in p_test_impl()
85 ret = test_status; in p_test_impl()
132 test_status = test_status_fail; in p_test_fail()