Home
last modified time | relevance | path

Searched refs:fail_count (Results 1 – 19 of 19) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/magic-enum/magic-enum/
H A Drun-ptest7 fail_count=0
17 fail_count=$((fail_count + 1))
22 if [ $fail_count -eq 0 ]
26 echo "FAIL: $fail_count of $all_count tests failed"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/memtool/memtool/
H A Drun-ptest7 fail_count=0
17 fail_count=$((fail_count + 1))
22 if [ $fail_count -eq 0 ]
26 echo "FAIL: $fail_count of $all_count tests failed"
/openbmc/qemu/tests/guest-debug/
H A Dtest_gdbstub.py10 fail_count = 0
29 global fail_count
30 fail_count += 1
57 global fail_count
58 fail_count += 1
69 print("All tests complete: {} failures".format(fail_count))
70 gdb_exit(fail_count)
11 fail_count = 0 global() variable
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/pegtl/pegtl/
H A Drun-ptest3 fail_count=0
13 fail_count=$((fail_count + 1))
18 if [ $fail_count -eq 0 ]
22 echo "FAIL: $fail_count of $all_count tests failed"
/openbmc/qemu/tests/tcg/mips/include/
H A Dtest_utils_32.h56 uint32_t fail_count = 0; in check_results_32() local
63 fail_count++; in check_results_32()
68 pass_count, fail_count, elapsed_time); in check_results_32()
70 if (fail_count > 0) { in check_results_32()
H A Dtest_utils_64.h58 uint32_t fail_count = 0; in check_results_64() local
66 fail_count++; in check_results_64()
71 pass_count, fail_count, elapsed_time); in check_results_64()
73 if (fail_count > 0) { in check_results_64()
H A Dtest_utils_128.h60 uint32_t fail_count = 0; in check_results_128() local
89 fail_count++; in check_results_128()
94 pass_count, fail_count, elapsed_time); in check_results_128()
96 if (fail_count > 0) { in check_results_128()
/openbmc/openbmc-test-automation/security/
H A Dtest_bmc_connections.robot73 ${fail_count}= Get Length ${fail_list}
75 Should Be Equal As Integers ${fail_count} ${0}
76 …... msg=Patch operation failed ${fail_count} times in ${verify_count} attempts; fails at iteratio…
130 ${fail_count}= Get Length ${fail_list}
132 Should Be Equal As Integers ${fail_count} ${0}
133 …... msg=Post operation failed ${fail_count} times in ${verify_count} attempts; fails at iteration…
160 ${fail_count}= Get Length ${ssh_status_list}
161 Should Be Equal ${fail_count} ${0}
162 ... msg= Login Failed ${fail_count} times in ${valid_login_count} attempts.
192 ${fail_count}= Count Values In List ${status_list} False
[all …]
/openbmc/openbmc-test-automation/pldm/
H A Dtest_redfish_bios_attributes.robot96 ${fail_count}= Get Length ${failed_attr_list}
97 Should Be Equal ${fail_count} ${0}
98 ... msg= BIOS write Failed ${fail_count} list: ${failed_attr_list}
118 ${fail_count}= Get Length ${failed_attr_list}
119 Should Be Equal ${fail_count} ${0}
120 ... msg= BIOS write Failed ${fail_count} list: ${failed_attr_list}
145 ${fail_count}= Get Length ${failed_attr_list}
146 Should Be Equal ${fail_count} ${0}
147 ... msg= BIOS write Failed ${fail_count} list: ${failed_attr_list}
/openbmc/u-boot/test/
H A Dut.c19 uts->fail_count++; in ut_fail()
33 uts->fail_count++; in ut_failf()
H A Dcmd_ut.c17 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()
/openbmc/u-boot/test/dm/
H A Dtest-main.c136 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()
/openbmc/openbmc-test-automation/redfish/dmtf_tools/
H A DRedfish_Protocol_Validator.robot43 ${fail_count}= Should Match Regexp ${output} FAIL: (\\d+)
45 IF ${fail_count[1]} != 0 Fail Redfish Protocol Validator Failed
/openbmc/u-boot/include/test/
H A Dtest.h20 int fail_count; member
/openbmc/qemu/include/hw/ssi/
H A Dpnv_spi.h43 uint8_t fail_count; /* RDR Match failure counter */ member
/openbmc/google-misc/subprojects/ncsid/src/platforms/nemora/portable/
H A Dncsi_fsm.h155 uint32_t fail_count; member
H A Dncsi_fsm.c52 network_debug->ncsi.fail_count++; in ncsi_fsm_fail()
/openbmc/qemu/hw/ssi/
H A Dpnv_spi.c876 s->fail_count = 0; in operation_sequencer()
883 s->fail_count++; in operation_sequencer()
890 if (s->fail_count >= RDR_MATCH_FAILURE_LIMIT) { in operation_sequencer()
/openbmc/google-misc/subprojects/ncsid/src/
H A Dncsi_state_machine.cpp413 network_debug_.ncsi.fail_count++; in fail()