aboutsummaryrefslogtreecommitdiff
path: root/clang/utils/test/MultiTestRunner.py
diff options
context:
space:
mode:
Diffstat (limited to 'clang/utils/test/MultiTestRunner.py')
-rwxr-xr-xclang/utils/test/MultiTestRunner.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/clang/utils/test/MultiTestRunner.py b/clang/utils/test/MultiTestRunner.py
index c43789d..41cf537 100755
--- a/clang/utils/test/MultiTestRunner.py
+++ b/clang/utils/test/MultiTestRunner.py
@@ -155,11 +155,10 @@ class Tester(threading.Thread):
def runTest(self, (path,index)):
command = path
- # Use hand concatentation here because we want to override
- # absolute paths.
- output = 'Output/' + path + '.out'
+ base = TestRunner.getTestOutputBase('Output', path)
+ output = base + '.out'
testname = path
- testresults = 'Output/' + path + '.testresults'
+ testresults = base + '.testresults'
TestRunner.mkdir_p(os.path.dirname(testresults))
numTests = len(self.provider.tests)
digits = len(str(numTests))