| /openbmc/u-boot/test/dm/ |
| H A D | test-main.c | 127 static int dm_test_main(const char *test_name) in dm_test_main() argument 148 if (!test_name) in dm_test_main() 162 if (test_name && strcmp(test_name, name)) in dm_test_main() 186 if (test_name && !run_count) in dm_test_main() 187 printf("Test '%s' not found\n", test_name); in dm_test_main() 201 const char *test_name = NULL; in do_ut_dm() local 204 test_name = argv[1]; in do_ut_dm() 206 return dm_test_main(test_name); in do_ut_dm()
|
| /openbmc/phosphor-time-manager/test/ |
| H A D | meson.build | 23 test_name = tests.split('.')[0] variable 25 test_name, 27 test_name,
|
| /openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/net-snmp/net-snmp/ |
| H A D | 0003-testing-add-the-output-format-for-ptest.patch | 21 + test_name=`basename $i` 24 + echo "PASS: $test_name" 27 + echo "FAIL: $test_name"
|
| /openbmc/qemu/tests/qapi-schema/ |
| H A D | test-qapi.py | 138 def test_and_diff(test_name, dir_name, update): argument 141 test_frontend(os.path.join(dir_name, test_name + '.json')) 155 outfp = open_test_result(dir_name, test_name + '.out', update) 156 errfp = open_test_result(dir_name, test_name + '.err', update) 168 print("%s %s" % (test_name, 'UPDATE' if update else 'FAIL'), 209 test_name = os.path.splitext(base_name)[0] 210 status |= test_and_diff(test_name, dir_name, args.update)
|
| /openbmc/openbmc/poky/meta/lib/oeqa/core/ |
| H A D | loader.py | 56 module_name, class_name, test_name = m.groups() 62 if test_name and test_name not in modules_dict[module_name][class_name]: 63 modules_dict[module_name][class_name].append(test_name) 138 test_name = case._testMethodName 164 if test_name not in module[class_name]: 175 if hasattr(case, test_name): 176 method = getattr(case, test_name)
|
| H A D | runner.py | 209 test_name = case._testMethodName 210 if hasattr(case, test_name): 211 method = getattr(case, test_name)
|
| /openbmc/u-boot/tools/dtoc/ |
| H A D | dtoc.py | 56 test_name = args and args[0] or None 58 if test_name: 60 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
|
| H A D | dtoc | 56 test_name = args and args[0] or None 58 if test_name: 60 suite = unittest.TestLoader().loadTestsFromName(test_name, module)
|
| /openbmc/openbmc/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/ |
| H A D | 0004-tests-add-helper-script-to-run-the-installed_tests.patch | 34 + env += {'GST_REGISTRY': '~/.cache/gstreamer-1.0/@0@.registry'.format(test_name)} 37 + env += {'TEST': '@0@/@1@'.format(join_paths(prefix, installed_tests_execdir), test_name)} 41 + output: test_name + '.sh', 47 test(test_name, exe, env: env, timeout : 3 * 60)
|
| H A D | 0002-tests-add-support-for-install-the-tests.patch | 86 + test_conf.set('program', test_name) 89 + output: test_name + '.test', 95 test(test_name, exe, env: env, timeout : 3 * 60)
|
| H A D | 0003-tests-use-a-dictionaries-for-environment.patch | 29 - env.set('GST_REGISTRY', '@0@/@1@.registry'.format(meson.current_build_dir(), test_name)) 41 + 'GST_REGISTRY': '@0@/@1@.registry'.format(meson.current_build_dir(), test_name),
|
| H A D | 0001-tests-respect-the-idententaion-used-in-meson.patch | 20 exe = executable(test_name, fname,
|
| /openbmc/qemu/tests/unit/ |
| H A D | meson.build | 182 foreach test_name, extra: tests 183 src = [test_name + '.c'] 192 exe = executable(test_name, src, genh, dependencies: deps) 194 test(test_name, exe, 195 depends: test_deps.get(test_name, []), 199 timeout: slow_tests.get(test_name, 30), 200 priority: slow_tests.get(test_name, 30),
|
| /openbmc/u-boot/tools/binman/ |
| H A D | binman | 69 test_name = args and args[0] or None 74 if test_name: 76 suite.addTests(loader.loadTestsFromName(test_name, module))
|
| H A D | binman.py | 69 test_name = args and args[0] or None 74 if test_name: 76 suite.addTests(loader.loadTestsFromName(test_name, module))
|
| /openbmc/qemu/tests/qtest/ |
| H A D | bcm2835-i2c-test.c | 100 g_autofree char *test_name = in main() local 102 qtest_add_data_func(test_name, (void *)(intptr_t) i, in main()
|
| H A D | qmp-cmd-test.c | 188 char *test_name; in add_query_tests() local 212 test_name = g_strdup_printf("qmp/%s", si->name); in add_query_tests() 213 qtest_add_data_func(test_name, si->name, test_query); in add_query_tests() 214 g_free(test_name); in add_query_tests()
|
| /openbmc/openbmc/poky/meta/lib/oeqa/core/utils/ |
| H A D | concurrencytest.py | 156 test_name = line[offset:-1].decode('utf8') 157 self.parser._current_test = subunit.RemotedTestCase(test_name) 158 self.parser.current_test_description = test_name 171 test_name = line[offset:-1].decode('utf8') 172 self.parser._current_test = subunit.RemotedTestCase(test_name) 173 self.parser.current_test_description = test_name
|
| /openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
| H A D | logparser.py | 104 for test_name in sorted(self.results[section]): 105 status = self.results[section][test_name] 106 f.write(status + ": " + test_name + "\n")
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | openbmc_ffdc_utils.robot | 33 ${test_name}= Get strip string ${TEST_NAME} 34 ${test_name}= Catenate SEPARATOR= ${FFDC_TIME}_ ${test_name} 35 RETURN ${suite_name} ${test_name}
|
| /openbmc/qemu/tests/qtest/fuzz/ |
| H A D | qos_fuzz.c | 172 char *test_name = strrchr(path_str, '/') + 1; in walk_path() local 173 if (strcmp(test_name, fuzz_target_name) == 0) { in walk_path()
|
| /openbmc/openbmc/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/ |
| H A D | 0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch | 65 foreach test_name, test_data: installed_tests 66 test_sources = [ test_name + '.c', 'test-common.c' ]
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | yoctotestresultsquerytests.py | 25 test_name = data["input"]
|
| /openbmc/openbmc/poky/meta/recipes-support/gnome-desktop-testing/gnome-desktop-testing/ |
| H A D | 0001-fix-non-literal-format-string-issue-with-clang.patch | 28 const char *test_name,
|
| /openbmc/qemu/tests/qtest/libqos/ |
| H A D | qgraph.c | 595 char *test_name = g_strdup_printf("%s-tests/%s", interface, name); in qos_add_test() local 601 node = create_node(test_name, QNODE_TEST); in qos_add_test() 610 add_edge(interface, test_name, QEDGE_CONSUMED_BY, &opts->edge); in qos_add_test() 611 g_free(test_name); in qos_add_test()
|