summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2014-03-20 14:19:22 (GMT)
committeranatoly techtonik <techtonik@gmail.com>2014-03-20 14:19:22 (GMT)
commitcaab0eacef8dccda042b01fb8cc6f48821bd0239 (patch)
tree49086e018288060a46f0c6d5ba4cee5e9a4ce547 /src/engine/SCons
parentdd17d6f1a71fe0787d0e781f3490e7f9a66a6b0d (diff)
downloadSCons-caab0eacef8dccda042b01fb8cc6f48821bd0239.zip
SCons-caab0eacef8dccda042b01fb8cc6f48821bd0239.tar.gz
SCons-caab0eacef8dccda042b01fb8cc6f48821bd0239.tar.bz2
Make runner for unit tests configurable, add TAPTestRunner that formats
output according to TAP protocol http://testanything.org/ runtest.py --runner TestUnit.TAPTestRunner src\engine\SCons\ActionTests.py
Diffstat (limited to 'src/engine/SCons')
-rw-r--r--src/engine/SCons/ActionTests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/engine/SCons/ActionTests.py b/src/engine/SCons/ActionTests.py
index 3e900d7..809e5ce 100644
--- a/src/engine/SCons/ActionTests.py
+++ b/src/engine/SCons/ActionTests.py
@@ -49,6 +49,7 @@ import SCons.Environment
import SCons.Errors
import TestCmd
+import TestUnit
# Initial setup of the common environment for all tests,
# a temporary working directory containing a
@@ -2108,8 +2109,8 @@ if __name__ == "__main__":
for tclass in tclasses:
names = unittest.getTestCaseNames(tclass, 'test_')
suite.addTests(list(map(tclass, names)))
- if not unittest.TextTestRunner().run(suite).wasSuccessful():
- sys.exit(1)
+
+ TestUnit.run(suite)
# Local Variables:
# tab-width:4