Home
last modified time | relevance | path

Searched refs:failed_tests (Results 1 – 17 of 17) sorted by relevance

/OK3568_Linux_fs/kernel/tools/testing/selftests/
H A Dkselftest_module.h14 static unsigned int failed_tests __initdata; \
21 failed_tests++; \
25 static inline int kstm_report(unsigned int total_tests, unsigned int failed_tests, in kstm_report() argument
28 if (failed_tests == 0) { in kstm_report()
35 pr_warn("failed %u out of %u tests\n", failed_tests, total_tests); in kstm_report()
37 return failed_tests ? -EINVAL : 0; in kstm_report()
45 return kstm_report(total_tests, failed_tests, skipped_tests); \
/OK3568_Linux_fs/kernel/lib/
H A Dtest_uuid.c43 static unsigned failed_tests __initdata;
59 failed_tests++; in test_uuid_failed()
117 if (failed_tests == 0) in test_uuid_init()
120 pr_err("failed %u out of %u tests\n", failed_tests, total_tests); in test_uuid_init()
122 return failed_tests ? -EINVAL : 0; in test_uuid_init()
H A Dtest_hexdump.c65 static unsigned failed_tests __initdata;
145 failed_tests++; in test_hexdump()
204 failed_tests++; in test_hexdump_overflow()
240 if (failed_tests == 0) in test_hexdump_init()
243 pr_err("failed %u out of %u tests\n", failed_tests, total_tests); in test_hexdump_init()
245 return failed_tests ? -EINVAL : 0; in test_hexdump_init()
H A Dtest_printf.c105 failed_tests++; in __test()
117 failed_tests += do_test(BUF_SIZE, expect, elen, fmt, ap); in __test()
120 failed_tests += do_test(rand, expect, elen, fmt, ap); in __test()
121 failed_tests += do_test(0, expect, elen, fmt, ap); in __test()
129 failed_tests++; in __test()
315 failed_tests++; in plain()
322 failed_tests++; in plain()
H A Dtest_bitmap.c163 failed_tests++; \
510 failed_tests++; in test_mem_optimisations()
514 failed_tests++; in test_mem_optimisations()
521 failed_tests++; in test_mem_optimisations()
526 failed_tests++; in test_mem_optimisations()
H A Dtest_strscpy.c110 failed_tests++; in tc()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/
H A Dptest.py91 failed_tests = {}
95 failed_tests[section] = sections[section]["log"]
100 failed_tests[section] = failed_testcases
107 if failed_tests:
108 failmsg = failmsg + "Failed ptests:\n%s" % pprint.pformat(failed_tests)
H A Dltp_compliance.py80 failed_tests = {}
86 failed_tests[posix_group] = test
88 if failed_tests:
89 self.failmsg = self.failmsg + "Failed ptests:\n%s" % pprint.pformat(failed_tests)
H A Dltp_stress.py79 failed_tests = {}
85 failed_tests[stress_group] = test
87 if failed_tests:
88 self.failmsg = self.failmsg + "Failed ptests:\n%s" % pprint.pformat(failed_tests)
H A Dltp.py93 failed_tests = {}
99 failed_tests[ltp_group] = test
101 if failed_tests:
102 self.failmsg = self.failmsg + "Failed ptests:\n%s" % pprint.pformat(failed_tests)
/OK3568_Linux_fs/kernel/fs/unicode/
H A Dutf8-selftest.c17 unsigned int failed_tests; variable
28 failed_tests++; \
288 failed_tests = 0; in init_test_ucd()
296 if (!failed_tests) in init_test_ucd()
299 pr_err("%u out of %u tests failed\n", failed_tests, in init_test_ucd()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/net-snmp/net-snmp/
H A Dnet-snmp-testing-add-the-output-format-for-ptest.patch19 rm -f failed_tests
30 echo "$i" >> failed_tests
35 if [ -f failed_tests ]; then
/OK3568_Linux_fs/kernel/tools/testing/kunit/
H A Dkunit_parser.py316 failed_tests = 0
335 failed_tests += 1
339 return total_tests, failed_tests, crashed_tests
343 failed_tests = 0
352 failed_tests,
358 (total_tests, failed_tests, crashed_tests)))
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_js_unit_tests.py40 failed_tests = self.find_all("li .fail .test-message")
41 for fail in failed_tests:
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/utils/
H A Dconcurrencytest.py76 self.target.failed_tests,
88 self.failed_tests = 0
94 self.failed_tests += 1
98 self.failed_tests += 1
111 return self.failed_tests == 0
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/valgrind/valgrind/
H A Drun-ptest77 failed_tests=`grep FAIL: ${LOG} | awk '{print $2}'`
78 for test in $failed_tests; do
/OK3568_Linux_fs/kernel/drivers/dma/
H A Ddmatest.c577 unsigned int failed_tests = 0; in dmatest_func() local
736 failed_tests++; in dmatest_func()
888 failed_tests++; in dmatest_func()
898 failed_tests++; in dmatest_func()
918 current->comm, total_tests, failed_tests, in dmatest_func()
923 if (ret || failed_tests) in dmatest_func()