Changeset 0300979 for src/tests/test.py
- Timestamp:
- Jul 27, 2018, 7:24:28 AM (5 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- dccad9f
- Parents:
- b9c04946 (diff), a95c117 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/test.py
rb9c04946 r0300979 64 64 testname = canonicalPath( testname ) 65 65 if Test.valid_name(testname): 66 found = [test for test in allTests if test.target() == testname]66 found = [test for test in allTests if canonicalPath( test.target() ) == testname] 67 67 tests.append( found[0] if len(found) == 1 else Test.from_target(testname) ) 68 68 else : … … 137 137 test.prepare() 138 138 139 # remove any outputs from the previous tests to prevent side effects140 rm( (out_file, err_file, exe_file) )141 142 139 # build, skipping to next test on error 143 140 before = time.time()
Note: See TracChangeset
for help on using the changeset viewer.