##// END OF EJS Templates
run-tests.py: remove runqueue's results parameter since it is now a global
Siddharth Agarwal -
r17928:082c0e1e default
parent child Browse files
Show More
@@ -1121,7 +1121,7 b' results = dict(p=[], f=[], s=[], i=[])'
1121 times = []
1121 times = []
1122 iolock = threading.Lock()
1122 iolock = threading.Lock()
1123
1123
1124 def runqueue(options, tests, results):
1124 def runqueue(options, tests):
1125 for test in tests:
1125 for test in tests:
1126 ret = runone(options, test)
1126 ret = runone(options, test)
1127 if options.first and ret is not None and not ret:
1127 if options.first and ret is not None and not ret:
@@ -1147,7 +1147,7 b' def runtests(options, tests):'
1147 print "running all tests"
1147 print "running all tests"
1148 tests = orig
1148 tests = orig
1149
1149
1150 runqueue(options, tests, results)
1150 runqueue(options, tests)
1151
1151
1152 failed = len(results['f'])
1152 failed = len(results['f'])
1153 tested = len(results['p']) + failed
1153 tested = len(results['p']) + failed
General Comments 0
You need to be logged in to leave comments. Login now