Home
last modified time | relevance | path

Searched refs:total_failed (Results 1 – 4 of 4) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/powerpc/copyloops/
Dexc_validate.c58 static int total_failed; variable
68 total_failed++; in do_one_test()
116 printf(" Fail: %d\n", total_failed); in test_copy_exception()
/external/cmockery/cmockery_0_1_2/src/
Dcmockery.c1569 size_t total_failed = 0; in _run_tests() local
1625 failed_names[total_failed] = test->name; in _run_tests()
1631 total_failed += failed; in _run_tests()
1637 total_failed ++; in _run_tests()
1648 total_failed ++; in _run_tests()
1658 if (total_failed) { in _run_tests()
1660 print_error("%d out of %d tests failed!\n", total_failed, in _run_tests()
1662 for (i = 0; i < total_failed; i++) { in _run_tests()
1672 total_failed = -1; in _run_tests()
1679 return (int)total_failed; in _run_tests()
/external/autotest/client/tools/
Dhtml_report.py1430 total_failed = 0
1438 total_failed += 1
1441 failed_perct = int(float(total_failed)/float(total_executed)*100)
/external/autotest/scheduler/
Dscheduler_models.py1046 total_failed = len(failed_rows) - n_test_jobs_failed
1049 success_rate = 100 - ((total_failed / float(total_executed)) * 100)
1054 stats['total_failed'] = total_failed
1055 stats['total_passed'] = total_executed - total_failed