Home
last modified time | relevance | path

Searched refs:testname (Results 1 – 25 of 30) sorted by relevance

12

/openbmc/u-boot/lib/efi_selftest/
H A Defi_selftest.c150 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()
196 if (testname ? 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()
254 !find_test(testname)) { in efi_selftest()
270 if (testname) in efi_selftest()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-dbs/psqlodbc/files/
H A Dpsqlodbc-fix-for-ptest-support.patch78 strcpy(testname, in);
88 - parse_argument(argv[j], testname, binname);
89 + parse_argument(argv[j], testname, binname, inputdir);
90 if (runtest(binname, testname, i, inputdir) != 0)
98 - binname, testname);
100 + binname, inputdir, testname);
104 - binname, testname);
106 + binname, inputdir, testname);
110 diff = rundiff(testname, inputdir);
125 - printf("ok %d - %s\n", testno, testname);
[all …]
/openbmc/qemu/tests/qtest/
H A Dpxe-test.c109 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 Dmodules-test.c70 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 Dcdrom-test.c113 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/linux/tools/power/x86/intel_pstate_tracer/
H A Dintel_pstate_tracer.py66 global sample_num, last_sec_cpu, last_usec_cpu, start_time, testname, trace_file
194 g_plot('set title "{} : cpu pstates : {:%F %H:%M}"'.format(testname, datetime.now()))
211 g_plot('set title "{} : cpu loads : {:%F %H:%M}"'.format(testname, datetime.now()))
239 g_plot('set title "{} : cpu durations : {:%F %H:%M}"'.format(testname, datetime.now()))
267 g_plot('set title "{} : cpu io boost : {:%F %H:%M}"'.format(testname, datetime.now()))
504 testname = "" variable
533 testname = arg variable
555 if os.path.exists(testname):
558 os.mkdir(testname)
560 fix_ownership(testname)
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Doetest.py201 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/linux/tools/testing/selftests/net/
H A Dgro.c81 static char *testname = "data"; variable
116 if (strcmp(testname, "ip") == 0) { in setup_sock_filter()
822 if (strcmp(testname, "data") == 0) { in gro_sender()
831 } else if (strcmp(testname, "ack") == 0) { in gro_sender()
846 } else if (strcmp(testname, "tcp") == 0) { in gro_sender()
858 } else if (strcmp(testname, "ip") == 0) { in gro_sender()
921 if (strcmp(testname, "data") == 0) { in gro_receiver()
934 } else if (strcmp(testname, "ack") == 0) { in gro_receiver()
955 } else if (strcmp(testname, "tcp") == 0) { in gro_receiver()
974 } else if (strcmp(testname, "ip") == 0) { in gro_receiver()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/keyutils/files/
H A Dkeyutils-test-fix-output-format.patch10 <result>: <testname>
11 where the result can be PASS, FAIL, or SKIP, and the testname can be any
/openbmc/linux/arch/x86/kernel/
H A Dnmi_selftest.c138 static inline void __init print_testname(const char *testname) in print_testname() argument
140 printk("%12s:", testname); in print_testname()
/openbmc/qemu/tests/unit/
H A Dtest-visitor-serialization.c1027 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/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dltp_compliance.py83 testname = ("ltpposixresult." + posix_group + "." + test)
84 self.extras[testname] = {'status': result}
H A Dltp_stress.py82 testname = ("ltpstressresult." + stress_group + "." + test)
83 self.extras[testname] = {'status': result}
H A Dptest.py91testname = "ptestresult." + (section or "No-section") + "." + "_".join(test.translate(trans).split…
92 extras[testname] = {'status': result}
H A Dltp.py106 testname = ("ltpresult." + ltp_group + "." + test)
107 self.extras[testname] = {'status': result}
/openbmc/openbmc/poky/meta/lib/patchtest/selftest/
H A Dselftest62 klass, testname = a[0], a[1] variable
64 testid = ".%s.%s" % (klass,testname)
/openbmc/openbmc-test-automation/lib/
H A Dopenbmc_ffdc.py178 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 Ddisplay_testname_for_subtest.patch4 Subject: [PATCH] Display testname for subtest
/openbmc/openbmc/poky/meta/recipes-extended/slang/slang/
H A Dtest-add-output-in-the-format-result-testname.patch4 Subject: [PATCH] test: add output in the format "result: testname"
/openbmc/openbmc/poky/meta/recipes-devtools/autoconf/autoconf/
H A Dautotest-automake-result-format.patch20 +# Automake result format "result: testname"
56 + -A, --am-fmt automake result format "result: testname"
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/
H A Dcgroup_iter.c51 int order, const char *testname) in read_from_cgroup_iter() argument
83 ASSERT_STREQ(buf, expected_output, testname); in read_from_cgroup_iter()
/openbmc/linux/tools/testing/selftests/ftrace/
H A Dftracetest422 local testname=`basename $1`
426 local testlog=`mktemp $LOG_DIR/${CASENO}-${testname}-log.XXXXXX`
/openbmc/openbmc/poky/meta/recipes-extended/slang/
H A Dslang_2.3.3.bb20 file://test-add-output-in-the-format-result-testname.patch \
/openbmc/openbmc/poky/meta/recipes-devtools/nasm/nasm/
H A D0002-Add-debug-prefix-map-option.patch319 + print "Test $testname/$subname validation failed\n";
325 mkpath("$outputdir/$testname/$subname");
/openbmc/qemu/tests/qemu-iotests/
H A Dtestrunner.py347 testname = os.path.basename(test)

12