summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/contrib/tts/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/contrib/tts/runner.py')
-rwxr-xr-xbitbake/lib/toaster/contrib/tts/runner.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/bitbake/lib/toaster/contrib/tts/runner.py b/bitbake/lib/toaster/contrib/tts/runner.py
index 6fc3e77523..bed665196e 100755
--- a/bitbake/lib/toaster/contrib/tts/runner.py
+++ b/bitbake/lib/toaster/contrib/tts/runner.py
@@ -31,7 +31,7 @@ from __future__ import print_function
31import sys, os 31import sys, os
32import unittest, importlib 32import unittest, importlib
33import logging, pprint, json 33import logging, pprint, json
34 34import re
35from shellutils import ShellCmdException, mkdirhier, run_shell_cmd 35from shellutils import ShellCmdException, mkdirhier, run_shell_cmd
36 36
37import config 37import config
@@ -121,13 +121,16 @@ def execute_tests(dir_under_test, testname):
121 # pylint: disable=broad-except 121 # pylint: disable=broad-except
122 # we disable the broad-except because we want to actually catch all possible exceptions 122 # we disable the broad-except because we want to actually catch all possible exceptions
123 try: 123 try:
124 # sorting the tests by the numeric order in the class name
125 tests = sorted(tests, key=lambda x: int(re.search(r"[0-9]+", x[1]).group(0)))
124 config.logger.debug("Discovered test clases: %s", pprint.pformat(tests)) 126 config.logger.debug("Discovered test clases: %s", pprint.pformat(tests))
125 unittest.installHandler() 127 unittest.installHandler()
126 suite = unittest.TestSuite() 128 suite = unittest.TestSuite()
127 loader = unittest.TestLoader() 129 loader = unittest.TestLoader()
128 result = unittest.TestResult() 130 result = unittest.TestResult()
129 for module_file, name in tests: 131 result.failfast = True
130 suite.addTest(loader.loadTestsFromName("%s.%s" % (module_file, name))) 132 for module_file, test_name in tests:
133 suite.addTest(loader.loadTestsFromName("%s.%s" % (module_file, test_name)))
131 config.logger.info("Running %d test(s)", suite.countTestCases()) 134 config.logger.info("Running %d test(s)", suite.countTestCases())
132 suite.run(result) 135 suite.run(result)
133 136
@@ -202,7 +205,7 @@ def main():
202 config.TESTDIR = testdir # we let tests know where to run 205 config.TESTDIR = testdir # we let tests know where to run
203 206
204 # ensure that the test dir only contains no *.pyc leftovers 207 # ensure that the test dir only contains no *.pyc leftovers
205 run_shell_cmd("find '%s' -type f -name *.pyc -exec rm {} \;" % testdir) 208 run_shell_cmd("find '%s' -type f -name *.pyc -exec rm {} \\;" % testdir)
206 209
207 no_failures = execute_tests(testdir, options.singletest) 210 no_failures = execute_tests(testdir, options.singletest)
208 211