mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
lit: Fix bug in --show-suites which accidentally override the list of tests.
llvm-svn: 86653
This commit is contained in:
parent
b662991460
commit
da307a7868
@ -452,8 +452,8 @@ def main():
|
||||
print '-- Test Suites --'
|
||||
suitesAndTests = suitesAndTests.items()
|
||||
suitesAndTests.sort(key = lambda (ts,_): ts.name)
|
||||
for ts,tests in suitesAndTests:
|
||||
print ' %s - %d tests' %(ts.name, len(tests))
|
||||
for ts,ts_tests in suitesAndTests:
|
||||
print ' %s - %d tests' %(ts.name, len(ts_tests))
|
||||
print ' Source Root: %s' % ts.source_root
|
||||
print ' Exec Root : %s' % ts.exec_root
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user