/external/jemalloc/test/ |
D | test.sh.in | 21 fail_count=0 23 if [ $pass_count -ne 0 -o $skip_count -ne 0 -o $fail_count != 0 ] ; then 37 fail_count=$((fail_count+1)) 45 total_count=`expr ${pass_count} + ${skip_count} + ${fail_count}` 47 …pass_count}/${total_count}, skip: ${skip_count}/${total_count}, fail: ${fail_count}/${total_count}" 49 if [ ${fail_count} -eq 0 ] ; then
|
/external/ltp/testcases/kernel/io/direct_io/ |
D | diotest4.c | 175 static void testcheck_end(int ret, int *failed, int *fail_count, char *msg) in testcheck_end() argument 179 (*fail_count)++; in testcheck_end() 197 int i, l_fail = 0, fail_count = 0, total = 0; in main() local 255 fail_count++; in main() 278 testcheck_end(ret, &failed, &fail_count, in main() 290 fail_count++; in main() 300 fail_count++; in main() 311 testcheck_end(ret, &failed, &fail_count, "Invalid file descriptor"); in main() 324 testcheck_end(ret, &failed, &fail_count, in main() 335 testcheck_end(ret, &failed, &fail_count, "Closed file descriptor"); in main() [all …]
|
D | diotest3.c | 234 int i, fail_count = 0, failed = 0, total = 0; in main() local 282 fail_count++; in main() 287 fail_count++; in main() 300 fail_count++; in main() 305 fail_count++; in main() 317 fail_count++; in main() 322 fail_count++; in main() 332 tst_resm(TINFO, "%d/%d testblocks failed", fail_count, total); in main()
|
D | diotest6.c | 256 int i, fail_count = 0, failed = 0, total = 0; in main() local 310 fail_count++; in main() 315 fail_count++; in main() 328 fail_count++; in main() 333 fail_count++; in main() 345 fail_count++; in main() 350 fail_count++; in main() 360 tst_resm(TINFO, "%d/%d testblocks failed", fail_count, total); in main()
|
D | diotest2.c | 141 int fail_count = 0, total = 0, failed = 0; in main() local 190 fail_count++; in main() 209 fail_count++; in main() 230 fail_count++; in main() 240 tst_resm(TINFO, "%d/%d testblocks failed", fail_count, total); in main()
|
D | diotest5.c | 171 int fail_count = 0, total = 0, failed = 0; in main() local 227 fail_count++; in main() 249 fail_count++; in main() 270 fail_count++; in main() 280 tst_resm(TINFO, "%d/%d testblocks failed", fail_count, total); in main()
|
/external/jemalloc_new/test/ |
D | test.sh.in | 33 fail_count=0 35 if [ $pass_count -ne 0 -o $skip_count -ne 0 -o $fail_count != 0 ] ; then 63 fail_count=$((fail_count+1)) 72 total_count=`expr ${pass_count} + ${skip_count} + ${fail_count}` 74 …pass_count}/${total_count}, skip: ${skip_count}/${total_count}, fail: ${fail_count}/${total_count}" 76 if [ ${fail_count} -eq 0 ] ; then
|
/external/autotest/server/site_tests/firmware_Cr50USB/ |
D | firmware_Cr50USB.py | 48 fail_count = 0 58 " %d failures" % fail_count if fail_count else "") 64 fail_count += 1 71 logging.info("USB failure on %d out of %d runs: %s", fail_count, 74 if fail_count: 76 (fail_count, num_iterations, ', '.join(failed_runs)))
|
/external/grpc-grpc/test/core/iomgr/ |
D | endpoint_tests.cc | 255 static void wait_for_fail_count(int* fail_count, int want_fail_count) { in wait_for_fail_count() argument 261 *fail_count < want_fail_count) { in wait_for_fail_count() 269 GPR_ASSERT(*fail_count == want_fail_count); in wait_for_fail_count() 276 int fail_count = 0; in multiple_shutdown_test() local 284 GRPC_CLOSURE_CREATE(inc_on_failure, &fail_count, in multiple_shutdown_test() 286 wait_for_fail_count(&fail_count, 0); in multiple_shutdown_test() 289 wait_for_fail_count(&fail_count, 1); in multiple_shutdown_test() 291 GRPC_CLOSURE_CREATE(inc_on_failure, &fail_count, in multiple_shutdown_test() 293 wait_for_fail_count(&fail_count, 2); in multiple_shutdown_test() 296 GRPC_CLOSURE_CREATE(inc_on_failure, &fail_count, in multiple_shutdown_test() [all …]
|
/external/autotest/server/cros/ |
D | tradefed_utils.py | 168 for testname, fail_count in waived_count.items(): 169 if fail_count > len(abis): 175 'abis: %s', fail_count, testname, len(abis), abis) 176 fail_count = len(abis) 177 waived += [testname] * fail_count 178 logging.info('Waived failure for %s %d time(s)', testname, fail_count)
|
/external/ltp/testcases/kernel/syscalls/open/ |
D | open10.c | 79 int fail_count = 0; in main() local 199 fail_count++; in main() 284 fail_count++; in main() 358 fail_count++; in main() 411 fail_count++; in main() 437 if (fail_count == 0) { in main()
|
/external/u-boot/test/ |
D | cmd_ut.c | 17 struct unit_test_state uts = { .fail_count = 0 }; in cmd_ut_category() 33 printf("Failures: %d\n", uts.fail_count); in cmd_ut_category() 35 return uts.fail_count ? CMD_RET_FAILURE : 0; in cmd_ut_category()
|
D | ut.c | 19 uts->fail_count++; in ut_fail() 33 uts->fail_count++; in ut_failf()
|
/external/u-boot/test/dm/ |
D | test-main.c | 136 uts->fail_count = 0; in dm_test_main() 189 printf("Failures: %d\n", uts->fail_count); in dm_test_main() 196 return uts->fail_count ? CMD_RET_FAILURE : 0; in dm_test_main()
|
/external/libusb/tests/ |
D | testlib.c | 170 int fail_count = 0; in libusb_testlib_run_tests() local 262 case TEST_STATUS_FAILURE: fail_count++; break; in libusb_testlib_run_tests() 271 libusb_testlib_logf(&ctx, "Failed %d tests", fail_count); in libusb_testlib_run_tests()
|
/external/jemalloc/bin/ |
D | jeprof.in | 5414 my $fail_count = 0; 5428 ++$fail_count; 5434 $pass_count, $fail_count; 5435 $error_count = $fail_count; 5436 $fail_count = 0; 5448 ++$fail_count; 5454 $pass_count, $fail_count; 5455 $error_count += $fail_count; 5466 my $fail_count = 0; 5480 ++$fail_count; [all …]
|
/external/jemalloc_new/bin/ |
D | jeprof.in | 5427 my $fail_count = 0; 5441 ++$fail_count; 5447 $pass_count, $fail_count; 5448 $error_count = $fail_count; 5449 $fail_count = 0; 5461 ++$fail_count; 5467 $pass_count, $fail_count; 5468 $error_count += $fail_count; 5479 my $fail_count = 0; 5493 ++$fail_count; [all …]
|
/external/autotest/server/site_tests/bluetooth_AdapterPairing/ |
D | bluetooth_AdapterPairing.py | 180 fail_count = iteration - pass_count 182 pass_count, fail_count, num_iterations)
|
/external/autotest/server/site_tests/bluetooth_AdapterHIDReports/ |
D | bluetooth_AdapterHIDReports.py | 125 fail_count = iteration - pass_count 127 pass_count, fail_count, num_iterations)
|
/external/u-boot/include/test/ |
D | test.h | 20 int fail_count; member
|
/external/nos/host/generic/nugget/proto/nugget/app/protoapi/ |
D | diagnostics_api.proto | 16 uint32 fail_count = 2; field
|
/external/openssh/ |
D | ssh-agent.c | 685 static u_int fail_count = 0; in process_lock_agent() local 699 fail_count = 0; in process_lock_agent() 704 if (fail_count < 100) in process_lock_agent() 705 fail_count++; in process_lock_agent() 706 delay = 100000 * fail_count; in process_lock_agent()
|
/external/autotest/client/common_lib/hosts/ |
D | repair_unittest.py | 94 def __init__(self, tag, deps, fail_count): argument 98 self._fail_count = fail_count
|
/external/dtc/tests/ |
D | run_tests.sh | 805 fail_count=$(grep "^ERROR: " $TMP | wc -l) 811 tot_fail=$((tot_fail + $fail_count))
|