Searched refs:suite (Results 1 – 16 of 16) sorted by relevance
/u-boot/tools/concurrencytest/ |
A D | concurrencytest.py | 51 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))
|
A D | README.md | 50 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase) 54 runner.run(suite) 57 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase) 58 concurrent_suite = ConcurrentTestSuite(suite, fork_for_tests(4))
|
/u-boot/tools/buildman/ |
A D | buildman | 38 suite = doctest.DocTestSuite(module) 39 suite.run(result) 45 suite = unittest.TestLoader().loadTestsFromTestCase(module) 46 suite.run(result)
|
A D | main.py | 38 suite = doctest.DocTestSuite(module) 39 suite.run(result) 45 suite = unittest.TestLoader().loadTestsFromTestCase(module) 46 suite.run(result)
|
/u-boot/tools/patman/ |
A D | test_util.py | 160 suite = doctest.DocTestSuite(module) 161 suite.run(result) 172 suite = unittest.TestSuite() 183 suite.addTests(loader.loadTestsFromName(test_name, module)) 187 suite.addTests(loader.loadTestsFromTestCase(module)) 189 concurrent_suite = ConcurrentTestSuite(suite, 193 suite.run(result)
|
A D | main.py | 136 suite = unittest.TestSuite() variable 141 suite.addTests(loader.loadTestsFromName(args.testname, module)) 145 suite.addTests(loader.loadTestsFromTestCase(module)) 146 suite.run(result) 149 suite = doctest.DocTestSuite(module) variable 150 suite.run(result)
|
A D | patman | 136 suite = unittest.TestSuite() variable 141 suite.addTests(loader.loadTestsFromName(args.testname, module)) 145 suite.addTests(loader.loadTestsFromTestCase(module)) 146 suite.run(result) 149 suite = doctest.DocTestSuite(module) variable 150 suite.run(result)
|
/u-boot/doc/develop/ |
A D | testing.rst | 15 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
|
A D | py_testing.rst | 1 U-Boot pytest suite 22 The test suite is implemented using pytest. Interaction with the U-Boot console 24 need to implement various "hook" scripts that are called by the test suite at 27 In order to run the test suite at a minimum we require that both Python 3 and 68 The recommended way to run the test suite, in order to ensure reproducibility 91 The `--bd` option tells the test suite which board type is being tested. This 211 suite. This keeps the test suite simple and isolated from system variances 256 suite calls this hook script for that purpose. 266 board's flash prior to running the test suite. 283 Whenever the test suite needs to reset the target board, this script is [all …]
|
/u-boot/doc/arch/ |
A D | arc.rst | 27 or process, and are supported by a complete suite of development tools.
|
/u-boot/tools/dtoc/ |
A D | test_fdt | 604 suite = unittest.TestLoader().loadTestsFromName(test_name, module) 608 suite = unittest.TestLoader().loadTestsFromTestCase(module) 609 suite.run(result)
|
A D | test_fdt.py | 604 suite = unittest.TestLoader().loadTestsFromName(test_name, module) 608 suite = unittest.TestLoader().loadTestsFromTestCase(module) 609 suite.run(result)
|
/u-boot/board/cobra5272/bdm/ |
A D | cobra5272_uboot.gdb | 7 # This file was changed to suite the senTec COBRA5272 board.
|
/u-boot/doc/android/ |
A D | fastboot.rst | 204 fastboot client wrap the Android suite around it. On OMAP for instance you
|
/u-boot/doc/uefi/ |
A D | uefi.rst | 262 An UEFI self-test suite can be embedded in U-Boot by building with::
|
/u-boot/common/ |
A D | dlmalloc.src | 643 minimum. For example, in one test suite of sessions measuring
|
Completed in 18 milliseconds