summaryrefslogtreecommitdiffstats
path: root/SCons/Scanner/ScannerTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'SCons/Scanner/ScannerTests.py')
-rw-r--r--SCons/Scanner/ScannerTests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/SCons/Scanner/ScannerTests.py b/SCons/Scanner/ScannerTests.py
index 68332a0..b9cb209 100644
--- a/SCons/Scanner/ScannerTests.py
+++ b/SCons/Scanner/ScannerTests.py
@@ -621,7 +621,9 @@ def suite():
ClassicCPPTestCase,
]
for tclass in tclasses:
- names = unittest.getTestCaseNames(tclass, 'test_')
+ loader = unittest.TestLoader()
+ loader.testMethodPrefix = 'test_'
+ names = loader.getTestCaseNames(tclass)
suite.addTests(list(map(tclass, names)))
return suite