/openbmc/linux/lib/ |
H A D | test_meminit.c | 20 if (failures) \ 22 __func__, failures, num_tests); \ 93 int failures = 0, num_tests = 0; in test_pages() local 97 num_tests += do_alloc_pages_order(i, &failures); in test_pages() 100 *total_failures += failures; in test_pages() 155 int failures = 0, num_tests = 0; in test_kvmalloc() local 160 num_tests += do_kmalloc_size(size, &failures); in test_kvmalloc() 161 num_tests += do_vmalloc_size(size, &failures); in test_kvmalloc() 165 *total_failures += failures; in test_kvmalloc() 380 int failures = 0, num_tests = 0; in test_kmemcache() local [all …]
|
/openbmc/u-boot/lib/efi_selftest/ |
H A D | efi_selftest.c | 76 static int setup(struct efi_unit_test *test, unsigned int *failures) in setup() argument 86 ++*failures; in setup() 101 static int execute(struct efi_unit_test *test, unsigned int *failures) in execute() argument 111 ++*failures; in execute() 126 static int teardown(struct efi_unit_test *test, unsigned int *failures) in teardown() argument 136 ++*failures; in teardown() 188 unsigned int steps, unsigned int *failures) in efi_st_do_tests() argument 202 setup_status[i] = setup(test, failures); in efi_st_do_tests() 204 execute(test, failures); in efi_st_do_tests() 206 teardown(test, failures); in efi_st_do_tests() [all …]
|
/openbmc/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | tsc_scaling_sync.c | 46 unsigned long failures = 0; in run_vcpu() local 75 failures++; in run_vcpu() 83 return (void *)failures; in run_vcpu() 99 unsigned long failures = 0; in main() local 103 failures += (unsigned long)this_cpu_failures; in main() 106 TEST_ASSERT(!failures, "TSC sync failed"); in main()
|
/openbmc/u-boot/test/ |
H A D | run | 13 [ $? -ne 0 ] && failures=$((failures+1)) 19 failures=0 56 if [ $failures == 0 ]; then
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | report-error.bbclass | 74 data['failures'] = [] 101 # server will refuse failures longer than param specified in project.settings.py 111 jsondata['failures'].append(taskdata) 120 data['failures'] = [] 126 data['failures'].append(taskdata) 136 data['failures'] = [] 141 data['failures'].append(taskdata) 150 failures = jsondata['failures'] 151 if(len(failures) > 0):
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | devtool-stress.py | 105 failures = 0 131 failures += 1 140 if failures: 151 failures = 0 194 failures += 1 203 if failures:
|
/openbmc/openbmc/poky/scripts/lib/resulttool/ |
H A D | junit.py | 18 failures = 0 30 failures += 1 42 testsuite_node.set("failures", "%s" % failures)
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_xsk.sh | 194 failures=0 200 failures=1 204 if [ $failures -eq 0 ]; then
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/chassis/ |
H A D | obmc-host-failure-reboots.bb | 1 SUMMARY = "Enables reboots on host failures" 3 on host failures"
|
/openbmc/u-boot/tools/binman/ |
H A D | binman | 91 for test, err in result.failures: 92 print err, result.failures 93 if result.errors or result.failures:
|
H A D | binman.py | 91 for test, err in result.failures: 92 print err, result.failures 93 if result.errors or result.failures:
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | mremap_test.c | 368 static void run_mremap_test_case(struct test test_case, int *failures, in run_mremap_test_case() argument 381 *failures += 1; in run_mremap_test_case() 441 int failures = 0; in main() local 521 run_mremap_test_case(test_cases[i], &failures, threshold_mb, in main() 540 run_mremap_test_case(perf_test_cases[i], &failures, in main() 544 if (failures > 0) in main()
|
/openbmc/linux/drivers/md/ |
H A D | dm-raid1.c | 67 struct bio_list failures; member 646 if (!ms->failures.head) in write_callback() 648 bio_list_add(&ms->failures, bio); in write_callback() 772 bio_list_merge(&ms->failures, &sync); in do_writes() 785 bio_list_add(&ms->failures, bio); in do_writes() 795 static void do_failures(struct mirror_set *ms, struct bio_list *failures) in do_failures() argument 799 if (likely(!failures->head)) in do_failures() 819 while ((bio = bio_list_pop(failures))) { in do_failures() 864 struct bio_list reads, writes, failures; in do_mirror() local 870 failures = ms->failures; in do_mirror() [all …]
|
/openbmc/linux/Documentation/fault-injection/ |
H A D | fault-injection.rst | 13 injects slab allocation failures. (kmalloc(), kmem_cache_alloc(), ...) 17 injects page allocation failures. (alloc_pages(), get_free_pages(), ...) 21 injects failures in user memory access functions. (copy_from_user(), get_user(), ...) 29 injects kernel RPC client and server failures. 85 specifies the interval between failures, for calls to 93 specifies how many times failures may happen at most. A value of -1 116 Any positive value limits failures to only processes indicated by 141 default is 'Y', setting it to 'N' will also inject failures into 149 default is 'Y', setting it to 'N' will also inject failures 155 failures. [all …]
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | rxtimestamp.c | 361 int failures = 0; in main() local 420 failures++; in main() 424 failures++; in main() 427 if (!failures) in main() 429 return failures; in main()
|
/openbmc/linux/tools/perf/tests/ |
H A D | pmu-events.c | 811 int *failures = data; in test__parsing_callback() local 825 (*failures)++; in test__parsing_callback() 847 (*failures)--; in test__parsing_callback() 880 (*failures)--; in test__parsing_callback() 902 int failures = 0; in test__parsing() local 904 pmu_for_each_core_metric(test__parsing_callback, &failures); in test__parsing() 905 pmu_for_each_sys_metric(test__parsing_callback, &failures); in test__parsing() 907 return failures == 0 ? TEST_OK : TEST_FAIL; in test__parsing()
|
/openbmc/openbmc-test-automation/redfish/dmtf_tools/ |
H A D | Redfish_Reference_Checker.robot | 31 # Work complete, total failures: 0 32 Should Match Regexp ${output} Work complete, total failures:[ ]+0
|
/openbmc/phosphor-hwmon/ |
H A D | meson.options | 9 description: 'Set sensor value to -errno on read failures.', 21 …description: 'Update functional property on read failures. Incompatible with negative-errno-on-fa…
|
/openbmc/linux/tools/testing/fault-injection/ |
H A D | failcmd.sh | 31 specifies how many times failures may happen at most. 59 inject slab allocation failures 61 inject page allocation failures
|
/openbmc/linux/tools/perf/tests/shell/lib/ |
H A D | perf_metric_validation.py | 274 failures = dict() 282 failures[m['Name']] = result 289 if name not in failures: continue 292 del failures[name] 294 failures[name] = val 301 if len(failures.keys()) != 0: 302 faillist = [{'MetricName':name, 'CollectedValue':val} for name, val in failures.items()]
|
/openbmc/u-boot/drivers/i2c/ |
H A D | i2c-gpio.c | 210 int failures = 0; in i2c_gpio_write_data() local 221 failures++; in i2c_gpio_write_data() 226 return failures; in i2c_gpio_write_data() 234 return failures; in i2c_gpio_write_data()
|
H A D | soft_i2c.c | 403 int shift, failures = 0; in soft_i2c_write() local 425 failures++; in soft_i2c_write() 429 return(failures); in soft_i2c_write()
|
/openbmc/linux/tools/testing/selftests/rcutorture/bin/ |
H A D | kvm-check-branches.sh | 97 echo '!!! ' $nfail failures in $ntry 'runs!!!' 100 echo No failures in $ntry runs.
|
/openbmc/linux/Documentation/mm/ |
H A D | hwpoison.rst | 29 users, because memory failures could happen anytime and anywhere, 51 memory failures too. The expectation is that most applications 60 All memory failures cause a panic. Do not attempt recovery. 121 injected failures, not for real memory failures. Once any hardware 128 Only handle memory failures to pages associated with the file
|
/openbmc/qemu/hw/i386/ |
H A D | sgx.c | 121 int failures; in sgx_epc_reset() local 130 failures = 0; in sgx_epc_reset() 144 failures++; in sgx_epc_reset() 150 if (!failures) { in sgx_epc_reset()
|