aboutsummaryrefslogtreecommitdiffstats
path: root/utils/lit
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lit')
-rwxr-xr-xutils/lit/lit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/lit/lit.py b/utils/lit/lit.py
index d4820d0..70bd060 100755
--- a/utils/lit/lit.py
+++ b/utils/lit/lit.py
@@ -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