Lines Matching refs:result
55 unsigned int result = TC_PASS; in test_1() local
70 result = check_result(1, expected, sizeof(expected), in test_1()
72 TC_END_RESULT(result); in test_1()
73 return result; in test_1()
81 unsigned int result = TC_PASS; in test_2() local
96 result = check_result(2, expected, sizeof(expected), in test_2()
98 TC_END_RESULT(result); in test_2()
99 return result; in test_2()
104 unsigned int result = TC_PASS; in test_3() local
119 result = check_result(3, expected, sizeof(expected), in test_3()
121 TC_END_RESULT(result); in test_3()
122 return result; in test_3()
127 unsigned int result = TC_PASS; in test_4() local
142 result = check_result(4, expected, sizeof(expected), in test_4()
144 TC_END_RESULT(result); in test_4()
145 return result; in test_4()
150 unsigned int result = TC_PASS; in test_5() local
168 result = check_result(5, expected, sizeof(expected), in test_5()
170 TC_END_RESULT(result); in test_5()
171 return result; in test_5()
176 unsigned int result = TC_PASS; in test_6() local
193 result = check_result(6, expected, sizeof(expected), in test_6()
195 TC_END_RESULT(result); in test_6()
196 return result; in test_6()
201 unsigned int result = TC_PASS; in test_7() local
218 result = check_result(7, expected, sizeof(expected), in test_7()
220 TC_END_RESULT(result); in test_7()
221 return result; in test_7()
226 unsigned int result = TC_PASS; in test_8() local
244 result = check_result(8, expected, sizeof(expected), in test_8()
246 TC_END_RESULT(result); in test_8()
247 return result; in test_8()
252 unsigned int result = TC_PASS; in test_9() local
269 result = check_result(9, expected, sizeof(expected), in test_9()
271 TC_END_RESULT(result); in test_9()
272 return result; in test_9()
277 unsigned int result = TC_PASS; in test_10() local
294 result = check_result(10, expected, sizeof(expected), in test_10()
296 TC_END_RESULT(result); in test_10()
297 return result; in test_10()
302 unsigned int result = TC_PASS; in test_11() local
319 result = check_result(11, expected, sizeof(expected), in test_11()
321 TC_END_RESULT(result); in test_11()
322 return result; in test_11()
327 unsigned int result = TC_PASS; in test_12() local
348 result = check_result(12, expected, sizeof(expected), in test_12()
350 TC_END_RESULT(result); in test_12()
351 return result; in test_12()
356 unsigned int result = TC_PASS; in test_13() local
376 result = check_result(13, expected, sizeof(expected), in test_13()
378 TC_END_RESULT(result); in test_13()
379 return result; in test_13()
384 unsigned int result = TC_PASS; in test_14() local
404 result = check_result(14, expected, sizeof(expected), in test_14()
406 TC_END_RESULT(result); in test_14()
407 return result; in test_14()
416 unsigned int result = TC_PASS; in main() local
419 result = test_1(); in main()
420 if (result == TC_FAIL) { in main()
425 result = test_2(); in main()
426 if (result == TC_FAIL) { in main()
431 result = test_3(); in main()
432 if (result == TC_FAIL) { in main()
437 result = test_4(); in main()
438 if (result == TC_FAIL) { in main()
443 result = test_5(); in main()
444 if (result == TC_FAIL) { in main()
449 result = test_6(); in main()
450 if (result == TC_FAIL) { in main()
455 result = test_7(); in main()
456 if (result == TC_FAIL) { in main()
461 result = test_8(); in main()
462 if (result == TC_FAIL) { in main()
467 result = test_9(); in main()
468 if (result == TC_FAIL) { in main()
473 result = test_10(); in main()
474 if (result == TC_FAIL) { in main()
479 result = test_11(); in main()
480 if (result == TC_FAIL) { in main()
485 result = test_12(); in main()
486 if (result == TC_FAIL) { in main()
492 result = test_13(); in main()
493 if (result == TC_FAIL) { in main()
498 result = test_14(); in main()
499 if (result == TC_FAIL) { in main()
508 TC_END_RESULT(result); in main()
509 TC_END_REPORT(result); in main()