| /openbmc/u-boot/lib/efi_selftest/ |
| H A D | efi_selftest.c | 150 static struct efi_unit_test *find_test(const u16 *testname) in find_test() argument 156 if (!efi_st_strcmp_16_8(testname, test->name)) in find_test() 159 efi_st_printf("\nTest '%ps' not found\n", testname); in find_test() 187 void efi_st_do_tests(const u16 *testname, unsigned int phase, in efi_st_do_tests() argument 196 if (testname ? in efi_st_do_tests() 197 efi_st_strcmp_16_8(testname, test->name) : test->on_request) in efi_st_do_tests() 231 const u16 *testname = NULL; in efi_selftest() local 250 testname = (u16 *)loaded_image->load_options; in efi_selftest() 252 if (testname) { in efi_selftest() 253 if (!efi_st_strcmp_16_8(testname, "list") || in efi_selftest() [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/psqlodbc/files/ |
| H A D | psqlodbc-fix-for-ptest-support.patch | 73 -parse_argument(const char *in, char *testname, char *binname) 74 +parse_argument(const char *in, char *testname, char *binname, const char *inputdir) 81 strcpy(testname, in); 91 - parse_argument(argv[j], testname, binname); 92 + parse_argument(argv[j], testname, binname, inputdir); 93 if (runtest(binname, testname, i, inputdir) != 0) 101 - binname, testname); 103 + binname, inputdir, testname); 107 - binname, testname); 109 + binname, inputdir, testname); [all …]
|
| /openbmc/qemu/tests/qtest/ |
| H A D | pxe-test.c | 109 char *testname; in test_batch() local 115 testname = g_strdup_printf("pxe/ipv4/%s/%s", in test_batch() 117 qtest_add_data_func(testname, test, test_pxe_ipv4); in test_batch() 118 g_free(testname); in test_batch() 121 testname = g_strdup_printf("pxe/ipv6/%s/%s", in test_batch() 123 qtest_add_data_func(testname, test, test_pxe_ipv6); in test_batch() 124 g_free(testname); in test_batch()
|
| H A D | modules-test.c | 70 char *testname = g_strdup_printf("/module/load/%s%s", in main() local 72 qtest_add_data_func(testname, modules + i, test_modules_load); in main() 73 g_free(testname); in main()
|
| H A D | cdrom-test.c | 113 char *testname = g_strdup_printf("cdrom/param/%s", *machines); in add_cdrom_param_tests() local 114 qtest_add_data_func(testname, *machines, test_cdrom_param); in add_cdrom_param_tests() 115 g_free(testname); in add_cdrom_param_tests()
|
| /openbmc/openbmc/poky/meta/lib/oeqa/ |
| H A D | oetest.py | 201 for testname in self.testsuites: 202 if testname != "auto": 203 if testname.startswith("oeqa."): 204 testslist.append(testname) 208 if os.path.exists(os.path.join(p, extrapath, type, testname + ".py")): 209 testslist.append("oeqa." + type + "." + testname) 212 … elif os.path.exists(os.path.join(p, extrapath, type, testname.split(".")[0] + ".py")): 213 testslist.append("oeqa." + type + "." + testname) 217 …('Test %s specified in TEST_SUITES could not be found in lib/oeqa/runtime under BBPATH' % testname)
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/keyutils/files/ |
| H A D | keyutils-test-fix-output-format.patch | 10 <result>: <testname> 11 where the result can be PASS, FAIL, or SKIP, and the testname can be any
|
| /openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | ltp_compliance.py | 83 testname = ("ltpposixresult." + posix_group + "." + test) 84 self.extras[testname] = {'status': result}
|
| H A D | ltp_stress.py | 82 testname = ("ltpstressresult." + stress_group + "." + test) 83 self.extras[testname] = {'status': result}
|
| H A D | ptest.py | 91 …testname = "ptestresult." + (section or "No-section") + "." + "_".join(test.translate(trans).split… 92 extras[testname] = {'status': result}
|
| H A D | ltp.py | 106 testname = ("ltpresult." + ltp_group + "." + test) 107 self.extras[testname] = {'status': result}
|
| /openbmc/openbmc/poky/meta/lib/patchtest/selftest/ |
| H A D | selftest | 62 klass, testname = a[0], a[1] variable 64 testid = ".%s.%s" % (klass,testname)
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-visitor-serialization.c | 1027 char testname[128]; in add_visitor_type() local 1035 sprintf(testname, "%s/primitives/%s", testname_prefix, in add_visitor_type() 1040 g_test_add_data_func(testname, args, test_primitives); in add_visitor_type() 1046 sprintf(testname, "%s/struct", testname_prefix); in add_visitor_type() 1050 g_test_add_data_func(testname, args, test_struct); in add_visitor_type() 1052 sprintf(testname, "%s/nested_struct", testname_prefix); in add_visitor_type() 1056 g_test_add_data_func(testname, args, test_nested_struct); in add_visitor_type() 1060 sprintf(testname, "%s/nested_struct_list", testname_prefix); in add_visitor_type() 1064 g_test_add_data_func(testname, args, test_nested_struct_list); in add_visitor_type() 1070 sprintf(testname, "%s/primitive_list/%s", testname_prefix, in add_visitor_type() [all …]
|
| /openbmc/qemu/tests/functional/ |
| H A D | meson.build | 87 testname = '@0@-@1@'.format(target_base, test) 94 teststamp = testname + '.tstamp' 99 precache = custom_target('func-precache-' + testname, 120 test('func-' + testname, 394 testname = '@0@-@1@'.format(target_base, test) global() variable
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | openbmc_ffdc.py | 178 suitename, testname = BuiltIn().run_keyword(*cmd_buf) 180 ffdc_dir_path = FFDC_LOG_PATH + suitename + "/" + testname + "/"
|
| /openbmc/openbmc/poky/meta/recipes-core/util-linux/util-linux/ |
| H A D | display_testname_for_subtest.patch | 4 Subject: [PATCH] Display testname for subtest
|
| /openbmc/openbmc/poky/meta/recipes-extended/slang/slang/ |
| H A D | test-add-output-in-the-format-result-testname.patch | 4 Subject: [PATCH] test: add output in the format "result: testname"
|
| /openbmc/openbmc/poky/meta/recipes-devtools/autoconf/autoconf/ |
| H A D | autotest-automake-result-format.patch | 20 +# Automake result format "result: testname" 56 + -A, --am-fmt automake result format "result: testname"
|
| /openbmc/openbmc/poky/documentation/test-manual/ |
| H A D | ptest.rst | 18 result: testname 21 the testname can be any identifying string.
|
| H A D | intro.rst | 233 ``testname`` is the name of the specific test:: 235 $ oe-selftest -r <testname>
|
| /openbmc/openbmc/poky/meta/recipes-extended/slang/ |
| H A D | slang_2.3.3.bb | 20 file://test-add-output-in-the-format-result-testname.patch \
|
| /openbmc/openbmc/poky/meta/recipes-devtools/nasm/nasm/ |
| H A D | 0002-Add-debug-prefix-map-option.patch | 319 + print "Test $testname/$subname validation failed\n"; 325 mkpath("$outputdir/$testname/$subname");
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | testrunner.py | 357 testname = os.path.basename(test) 358 print(f'# running {self.env.imgfmt} {testname}')
|