Home
last modified time | relevance | path

Searched refs:suite (Results 51 – 75 of 416) sorted by relevance

12345678910>>...17

/openbmc/linux/include/kunit/
H A Dtest.h246 int (*suite_init)(struct kunit_suite *suite);
247 void (*suite_exit)(struct kunit_suite *suite);
320 int kunit_run_tests(struct kunit_suite *suite);
322 size_t kunit_suite_num_test_cases(struct kunit_suite *suite);
324 unsigned int kunit_test_case_num(struct kunit_suite *suite,
374 #define kunit_test_suite(suite) kunit_test_suites(&suite) argument
400 #define kunit_test_init_section_suite(suite) \ argument
401 kunit_test_init_section_suites(&suite)
403 #define kunit_suite_for_each_test_case(suite, test_case) \ argument
404 for (test_case = suite->test_cases; test_case->run_case; test_case++)
[all …]
/openbmc/phosphor-host-ipmid/test/
H A Dmeson.build39 # Build/add oemrouter_unittest to test suite
64 # Build/add closesession_unittest to test suite
75 # Build/add sensorcommands_unittest to test suite
/openbmc/pam-ipmi/
H A D.gitignore1 # Test suite logs
46 test-suite.log
/openbmc/u-boot/tools/patman/
H A Dpatman.py93 suite = unittest.TestLoader().loadTestsFromTestCase(module) variable
94 suite.run(result)
97 suite = doctest.DocTestSuite(module) variable
98 suite.run(result)
H A Dpatman93 suite = unittest.TestLoader().loadTestsFromTestCase(module) variable
94 suite.run(result)
97 suite = doctest.DocTestSuite(module) variable
98 suite.run(result)
/openbmc/linux/tools/testing/selftests/tc-testing/creating-plugins/
H A DAddingPlugins.txt14 - adding commands to be run before and/or after the test suite
18 pre (the pre-suite stage)
23 post (the post-suite stage)
48 TAP output. The tdc.py script will do that for the test suite as
52 post-suite method using this info passed in to the pre_suite method.
/openbmc/linux/Documentation/ABI/testing/
H A Ddebugfs-scmi-raw14 Users: Debugging, any userspace test suite
32 Users: Debugging, any userspace test suite
43 Users: Debugging, any userspace test suite
54 Users: Debugging, any userspace test suite
66 Users: Debugging, any userspace test suite
90 Users: Debugging, any userspace test suite
117 Users: Debugging, any userspace test suite
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/mcelog/
H A Dmce-test_git.bb4 SUMMARY = "MCE test suite"
6 DESCRIPTION = "The MCE test suite is a collection of tools and test scripts for \
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-rapidjson_1.14.bb16 # run-ptest is a shell script that starts the test suite
36 # Installing the test suite on the target
/openbmc/openbmc-test-automation/openpower/ras/
H A Dtest_sanity.robot40 [Documentation] Do the suite setup.
47 [Documentation] Do the suite setup.
/openbmc/linux/lib/kunit/
H A Dexecutor.c102 kunit_filter_glob_tests(const struct kunit_suite *const suite, const char *test_glob) in kunit_filter_glob_tests() argument
108 kunit_suite_for_each_test_case(suite, test_case) { in kunit_filter_glob_tests()
116 copy = kmemdup(suite, sizeof(*copy), GFP_KERNEL); in kunit_filter_glob_tests()
127 kunit_suite_for_each_test_case(suite, test_case) { in kunit_filter_glob_tests()
H A Dkunit-test.c535 struct kunit_suite suite; in kunit_log_test() local
537 suite.log = kunit_kzalloc(test, KUNIT_LOG_SIZE, GFP_KERNEL); in kunit_log_test()
538 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, suite.log); in kunit_log_test()
542 kunit_log(KERN_INFO, &suite, "add to suite log."); in kunit_log_test()
543 kunit_log(KERN_INFO, &suite, "along with this."); in kunit_log_test()
551 strstr(suite.log, "add to suite log.")); in kunit_log_test()
553 strstr(suite.log, "along with this.")); in kunit_log_test()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/samba/samba/
H A D0006-smbtorture-skip-test-case-tfork_cmd_send.patch29 - torture_suite_add_simple_test(suite,
33 torture_suite_add_simple_test(suite,
/openbmc/u-boot/test/py/
H A DREADME.md1 # U-Boot pytest suite
19 The test suite is implemented using pytest. Interaction with the U-Boot console
21 need to implement various "hook" scripts that are called by the test suite at
49 packages, or may provide versions that are too old to run the test suite. One
71 The `--bd` option tells the test suite which board type is being tested. This
72 lets the test suite know which features the board has, and hence exactly what
171 suite. This keeps the test suite simple and isolated from system variances
211 suite calls this hook script for that purpose.
221 board's flash prior to running the test suite.
237 Whenever the test suite needs to reset the target board, this script is
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/
H A Dcontext.py38 def __init__(self, suite, processes, setupfunc, removefunc, bb_vars): argument
39 super().__init__([suite])
41 self.suite = suite
47 (builddir, newbuilddir) = self.setupfunc("-st", None, self.suite)
84 def setup_builddir(self, suffix, selftestdir, suite): argument
148 patch_suite(suite)
/openbmc/u-boot/test/
H A DREADME15 in the U-Boot directory. Note that only the pytest suite is run using this
33 Many tests are available using the pytest suite, in test/py. This can run
44 See test/py/README.md for more information about the pytest suite.
78 You can assume that the Pytest suite will be run before patches are accepted
/openbmc/linux/tools/testing/selftests/tc-testing/
H A DREADME1 tdc - Linux Traffic Control (tc) unit testing suite
76 One run of tests is considered a "test suite" (this will be refined in the
77 future). A test suite has one or more test cases in it.
134 -P, --pause Pause execution just before post-suite stage
198 pre- and post-suite
203 The pre-suite hook receives the number of tests and an array of test ids.
215 - pre (pre-suite)
220 - post (post-suite)
254 first version of the tc testing suite. This work was presented at
H A DTODO.txt9 need to better handle problems in pre- and post-suite.
28 and a way to configure a test suite,
/openbmc/linux/Documentation/arch/arm/vfp/
H A Drelease-notes.rst14 John R. Hauser using the TestFloat-2a test suite. Details of this
15 library and test suite can be found at:
/openbmc/openbmc/poky/meta/recipes-devtools/quilt/quilt/
H A Dfaildiff-order.patch9 The test suite does not differentiate between stdout and stderr. When
13 case itself. Otherwise the test suite fails randomly, which is a pain
/openbmc/openbmc/poky/scripts/
H A Doe-build-perf-test172 suite = loader.loadTestsFromNames(args.run_tests, oeqa.buildperf)
174 suite = loader.loadTestsFromModule(oeqa.buildperf)
196 result = runner.run(suite)
H A Dpatchtest131suite = loader.discover(start_dir=PatchTestInput.testdir, pattern=PatchTestInput.pattern, top_leve…
132 ntc = suite.countTestCases()
140 result = runner.run(suite)
/openbmc/openbmc/meta-raspberrypi/dynamic-layers/multimedia-layer/recipes-multimedia/libcamera-apps/
H A Dlibcamera-apps_git.bb1 SUMMARY = "A suite of libcamera-based apps"
2 DESCRIPTION = "This is a small suite of libcamera-based apps that aim to \
/openbmc/openbmc-test-automation/gui/gui_test/settings_menu/
H A Dtest_factory_reset_sub_menu.robot3 Documentation Test suite for OpenBMC GUI "Factory reset" sub-menu of "Settings" menu.
54 [Documentation] Do test suite setup tasks.
/openbmc/phosphor-hwmon/test/
H A D.gitignore1 test-suite.log

12345678910>>...17