Skip to content

Commit 3c2da2b

Browse files
committed
MultiTestRunner.py improvements.
- Tweak output directories for temp files, derive the temporary base from the test's parent directory name, and the test name (instead of the whole path). llvm-svn: 77059
1 parent e6475f1 commit 3c2da2b

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

clang/utils/test/MultiTestRunner.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,10 @@ def run(self):
155155

156156
def runTest(self, (path,index)):
157157
command = path
158-
# Use hand concatentation here because we want to override
159-
# absolute paths.
160-
output = 'Output/' + path + '.out'
158+
base = TestRunner.getTestOutputBase('Output', path)
159+
output = base + '.out'
161160
testname = path
162-
testresults = 'Output/' + path + '.testresults'
161+
testresults = base + '.testresults'
163162
TestRunner.mkdir_p(os.path.dirname(testresults))
164163
numTests = len(self.provider.tests)
165164
digits = len(str(numTests))

clang/utils/test/TestRunner.py

+11-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#
1717

1818
import errno
19-
import hashlib
2019
import os
2120
import platform
2221
import re
@@ -286,6 +285,16 @@ def inferClangCC(clang):
286285

287286
return clangcc
288287

288+
def getTestOutputBase(dir, testpath):
289+
"""getTestOutputPath(dir, testpath) - Get the full path for temporary files
290+
corresponding to the given test path."""
291+
292+
# Form the output base out of the test parent directory name and the test
293+
# name. FIXME: Find a better way to organize test results.
294+
return os.path.join(dir,
295+
os.path.basename(os.path.dirname(testpath)),
296+
os.path.basename(testpath))
297+
289298
def main():
290299
global options
291300
from optparse import OptionParser
@@ -314,9 +323,7 @@ def main():
314323

315324
for path in args:
316325
command = path
317-
# Use hand concatentation here because we want to override
318-
# absolute paths.
319-
output = 'Output/' + path + '.out'
326+
output = getTestOutputPath('Output', path) + '.out'
320327
testname = path
321328

322329
res = runOneTest(path, command, output, testname,

0 commit comments

Comments
 (0)