Home
last modified time | relevance | path

Searched refs:suite (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/openbmc/openbmc/poky/meta/lib/oeqa/core/utils/
H A Dtest.py11 def getSuiteCases(suite): argument
17 if isinstance(suite, unittest.TestCase):
18 tests.append(suite)
19 elif isinstance(suite, unittest.suite.TestSuite):
20 for item in suite:
25 def getSuiteModules(suite): argument
30 for test in getSuiteCases(suite):
34 def getSuiteCasesInfo(suite, func): argument
39 for test in getSuiteCases(suite):
43 def getSuiteCasesNames(suite): argument
[all …]
H A Dconcurrencytest.py196 def __init__(self, suite, processes, setupfunc, removefunc, bb_vars): argument
197 super(ConcurrentTestSuite, self).__init__([suite])
244 def fork_for_tests(concurrency_num, suite): argument
247 selftestdir = get_test_layer(suite.bb_vars['BBLAYERS'])
249 test_blocks = partition_tests(suite, concurrency_num)
251 suite._tests[:] = []
270 … (builddir, newbuilddir) = suite.setupfunc("-st-" + str(ourpid), selftestdir, process_suite)
289 suite.removefunc(newbuilddir)
305 suite.removefunc(newbuilddir)
319 def partition_tests(suite, count): argument
[all …]
/openbmc/openbmc/poky/scripts/lib/resulttool/
H A Dreport.py33 for suite in result['ptestresult.sections']:
34 if suite not in self.ptests[machine]:
35 self.ptests[machine][suite] = {
39 if 'duration' in result['ptestresult.sections'][suite]:
40 … self.ptests[machine][suite]['duration'] = result['ptestresult.sections'][suite]['duration']
41 if 'timeout' in result['ptestresult.sections'][suite]:
42 self.ptests[machine][suite]['duration'] += " T"
47 _, suite, test = k.split(".", 2)
52 if 'ptestresult.sections' in result and suite not in result['ptestresult.sections']:
54 _, suite, suite1, test = k.split(".", 3)
[all …]
H A Dstore.py54 for suite in results:
55 for result in results[suite]:
56 config = results[suite][result]['configuration']['LAYERS']['meta']
60 if suite not in revisions[revision]:
61 revisions[revision][suite] = {}
62 revisions[revision][suite][result] = results[suite][result]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dbinutils.py31 def run_binutils(self, suite): argument
33 features.append('CHECK_TARGETS = "{0}"'.format(suite))
46 sumspath = os.path.join(builddir, suite, "{0}.sum".format(suite))
48 sumspath = os.path.join(builddir, suite, "testsuite", "{0}.sum".format(suite))
51 ptestsuite = "binutils-{}".format(suite) if suite != "binutils" else suite
H A Dgcc.py21 def check_skip(self, suite): argument
23 if suite not in targets:
24 self.skipTest("Target does not use {0}".format(suite))
57 for suite in suites:
58 sumspath = os.path.join(builddir, "gcc", "testsuite", suite, "{0}.sum".format(suite))
60 … sumspath = os.path.join(builddir, target_sys, suite, "testsuite", "{0}.sum".format(suite))
62 …sumspath = os.path.join(builddir, target_sys, suite, "testsuite", "{0}.sum".format(suite.split("-"…
65 ptestsuite = "gcc-{}".format(suite) if suite != "gcc" else suite
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/s-suite/
H A Ds-suite_git.bb15 # installing in /opt/S-suite since the package has
18 install -d ${D}/opt/S-suite
20 install -d ${D}/opt/S-suite/$(basename $i)
21 install -m0755 -p ${S}/$(basename $i)/* ${D}/opt/S-suite/$(basename $i)
24 install -m0755 ${S}/def_config.sh ${D}/opt/S-suite
25 install -m0755 ${S}/config_params.sh ${D}/opt/S-suite
26 install -m0755 ${S}/create_config.sh ${D}/opt/S-suite
27 install -m0755 ${S}/process_config.sh ${D}/opt/S-suite
33 FILES:${PN} = "/opt/S-suite/"
35 # added to INSANE_SKIP since s-suite have an runtime
/openbmc/u-boot/tools/concurrencytest/
H A Dconcurrencytest.py51 def do_fork(suite): argument
60 test_blocks = partition_tests(suite, concurrency_num)
62 suite._tests[:] = []
102 def partition_tests(suite, count): argument
110 tests = iterate_tests(suite)
135 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase) variable
139 runner.run(suite)
142 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase) variable
143 concurrent_suite = ConcurrentTestSuite(suite, fork_for_tests(4))
H A DREADME.md50 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase)
54 runner.run(suite)
57 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase)
58 concurrent_suite = ConcurrentTestSuite(suite, fork_for_tests(4))
/openbmc/openbmc/poky/meta/recipes-support/apr/apr/
H A D0001-Add-option-to-disable-timed-dependant-tests.patch52 @@ -535,7 +535,7 @@ abts_suite *testlock(abts_suite *suite)
53 abts_run_test(suite, threads_not_impl, NULL);
55 abts_run_test(suite, test_thread_mutex, NULL);
58 abts_run_test(suite, test_thread_timedmutex, NULL);
60 abts_run_test(suite, test_thread_nestedmutex, NULL);
61 @@ -543,7 +543,7 @@ abts_suite *testlock(abts_suite *suite)
62 abts_run_test(suite, test_thread_rwlock, NULL);
63 abts_run_test(suite, test_cond, NULL);
64 abts_run_test(suite, test_timeoutcond, NULL);
67 abts_run_test(suite, test_timeoutmutex, NULL);
/openbmc/openbmc/poky/meta/recipes-kernel/lttng/lttng-tools/
H A Drun-ptest39 if [ -e tests/unit/test-suite.log ]; then
40 cat tests/unit/test-suite.log
42 if [ -e tests/regression/test-suite.log ]; then
43 cat tests/regression/test-suite.log
/openbmc/u-boot/tools/binman/
H A Dbinman58 suite = doctest.DocTestSuite(module)
59 suite.run(result)
70 suite = unittest.TestSuite()
76 suite.addTests(loader.loadTestsFromName(test_name, module))
80 suite.addTests(loader.loadTestsFromTestCase(module))
82 concurrent_suite = ConcurrentTestSuite(suite,
86 suite.run(result)
H A Dbinman.py58 suite = doctest.DocTestSuite(module)
59 suite.run(result)
70 suite = unittest.TestSuite()
76 suite.addTests(loader.loadTestsFromName(test_name, module))
80 suite.addTests(loader.loadTestsFromTestCase(module))
82 concurrent_suite = ConcurrentTestSuite(suite,
86 suite.run(result)
/openbmc/qemu/tests/decode/
H A Dmeson.build52 suite = 'decodetree' variable
58 suite: suite)
64 suite: suite)
/openbmc/openbmc-test-automation/tools/
H A Drobot_custom_rules.py23 def apply(self, suite): argument
27 for table in suite.tables:
35 suite,
/openbmc/u-boot/tools/buildman/
H A Dbuildman39 suite = doctest.DocTestSuite(module)
40 suite.run(result)
46 suite = unittest.TestLoader().loadTestsFromTestCase(module)
47 suite.run(result)
H A Dbuildman.py39 suite = doctest.DocTestSuite(module)
40 suite.run(result)
46 suite = unittest.TestLoader().loadTestsFromTestCase(module)
47 suite.run(result)
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Doetest.py291 for suite in suites:
292 suite.dependencies = []
293 suite.depth = 0
294 for test in self.getTests(suite):
302 if dep_suite not in suite.dependencies and \
303 dep_suite is not suite:
304 suite.dependencies.append(dep_suite)
313 def set_suite_depth(suite): argument
314 for dep in suite.dependencies:
316 if new_depth > suite.depth:
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/phoronix-test-suite/
H A Dphoronix-test-suite_10.8.4.bb8 SRC_URI = "http://www.phoronix-test-suite.com/releases/${BP}.tar.gz \
14 S = "${WORKDIR}/phoronix-test-suite"
40 ${datadir}/phoronix-test-suite \
41 ${datadir}/appdata/phoronix-test-suite.appdata.xml \
42 ${datadir}/icons/hicolor/48x48/apps/phoronix-test-suite.png \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/squid/files/
H A D0002-squid-make-squid-conf-tests-run-on-target-device.patch16 test-suite/Makefile.am | 16 ++++++++--------
17 test-suite/test-squid-conf.sh | 2 +-
20 --- a/test-suite/Makefile.am
21 +++ b/test-suite/Makefile.am
60 --- a/test-suite/test-squid-conf.sh
61 +++ b/test-suite/test-squid-conf.sh
H A Drun-ptest3 make -C test-suite -k squid-conf-tests
4 make -C test-suite -k runtest-TESTS
/openbmc/openbmc/poky/meta/lib/oeqa/core/
H A Drunner.py259 def _walk_suite(self, suite, func): argument
260 for obj in suite:
261 if isinstance(obj, unittest.suite.TestSuite):
268 def _list_tests_name(self, suite): argument
284 self._walk_suite(suite, _list_cases)
288 def _list_tests_class(self, suite): argument
305 self._walk_suite(suite, _list_classes)
307 def _list_tests_module(self, suite): argument
320 self._walk_suite(suite, _list_modules)
322 def list_tests(self, suite, display_type): argument
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/phoronix-test-suite/files/
H A DCVE-2022-40704.patch7 Fixes: https://github.com/phoronix-test-suite/phoronix-test-suite/issues/650#issuecomment-1193116678
13 https://github.com/phoronix-test-suite/phoronix-test-suite/commit/d3880d9d3ba795138444da83f1153c3c3…
/openbmc/openbmc/poky/meta/recipes-devtools/strace/strace/
H A Drun-ptest6 make -j4 -B -C tests -k test-suite.log
9 cat tests/test-suite.log
/openbmc/openbmc/poky/meta/recipes-kernel/lttng/babeltrace2/
H A Drun-ptest15 if [ -e tests/test-suite.log ]; then
16 cat tests/test-suite.log

12345678910>>...13