Roll gtest-parallel.
Brings in change that eliminates Queues which shows significant speed improvement for huge work lists. R=andrew@webrtc.org BUG= Review URL: https://webrtc-codereview.appspot.com/26409004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7132 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
parent
23a5e3c3b0
commit
0fa04755af
2
third_party/gtest-parallel/README.webrtc
vendored
2
third_party/gtest-parallel/README.webrtc
vendored
@ -1,5 +1,5 @@
|
||||
URL: https://github.com/google/gtest-parallel
|
||||
Version: 166648f68f6a26eaf4073fc244f0031ea139ce66
|
||||
Version: ebf302fdc83f2c5afb9b7b45dc14dd0807b9e67d
|
||||
License: Apache 2.0
|
||||
License File: LICENSE
|
||||
|
||||
|
74
third_party/gtest-parallel/gtest-parallel
vendored
74
third_party/gtest-parallel/gtest-parallel
vendored
@ -12,13 +12,13 @@
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
import Queue
|
||||
import optparse
|
||||
import subprocess
|
||||
import sys
|
||||
import threading
|
||||
import time
|
||||
|
||||
stdout_lock = threading.Lock()
|
||||
class FilterFormat:
|
||||
total_tests = 0
|
||||
finished_tests = 0
|
||||
@ -39,7 +39,6 @@ class FilterFormat:
|
||||
(binary, test) = arg.split(' ', 1)
|
||||
self.tests[job_id] = (binary, test.strip())
|
||||
self.outputs[job_id] = []
|
||||
self.total_tests += 1
|
||||
elif command == "EXIT":
|
||||
(exit_code, time_ms) = [int(x) for x in arg.split(' ', 1)]
|
||||
self.finished_tests += 1
|
||||
@ -49,35 +48,37 @@ class FilterFormat:
|
||||
self.failures.append(self.tests[job_id])
|
||||
for line in self.outputs[job_id]:
|
||||
print line
|
||||
elif command == "TESTCNT":
|
||||
self.total_tests = int(arg.split(' ', 1)[1])
|
||||
print "[0/%d] Running tests...\r" % self.total_tests,
|
||||
|
||||
def add_stdout(self, job_id, output):
|
||||
self.outputs[job_id].append(output)
|
||||
|
||||
def log(self):
|
||||
print "[0/?] Running tests...\r",
|
||||
while True:
|
||||
line = log.get()
|
||||
if line == "":
|
||||
break
|
||||
(prefix, output) = line.split(' ', 1)
|
||||
def log(self, line):
|
||||
stdout_lock.acquire()
|
||||
(prefix, output) = line.split(' ', 1)
|
||||
|
||||
if prefix[-1] == ':':
|
||||
self.handle_meta(int(prefix[:-1]), output)
|
||||
else:
|
||||
self.add_stdout(int(prefix[:-1]), output)
|
||||
if prefix[-1] == ':':
|
||||
self.handle_meta(int(prefix[:-1]), output)
|
||||
else:
|
||||
self.add_stdout(int(prefix[:-1]), output)
|
||||
stdout_lock.release()
|
||||
|
||||
def end(self):
|
||||
if self.failures:
|
||||
print "FAILED TESTS (%d/%d):" % (len(self.failures), self.total_tests)
|
||||
for (binary, test) in self.failures:
|
||||
print " ", binary + ": " + test
|
||||
|
||||
class RawFormat:
|
||||
def log(self):
|
||||
while True:
|
||||
line = log.get()
|
||||
if line == "":
|
||||
return
|
||||
sys.stdout.write(line + "\n")
|
||||
sys.stdout.flush()
|
||||
def log(self, line):
|
||||
stdout_lock.acquire()
|
||||
sys.stdout.write(line + "\n")
|
||||
sys.stdout.flush()
|
||||
stdout_lock.release()
|
||||
def end(self):
|
||||
pass
|
||||
|
||||
parser = optparse.OptionParser(
|
||||
usage = 'usage: %prog [options] executable [executable ...]')
|
||||
@ -137,13 +138,9 @@ for test_binary in binaries:
|
||||
|
||||
# Repeat tests (-r flag).
|
||||
tests *= options.repeat
|
||||
|
||||
log = Queue.Queue()
|
||||
test_queue = Queue.Queue()
|
||||
|
||||
for job_id, (test_binary, command, test) in enumerate(tests):
|
||||
log.put(str(job_id) + ': TEST ' + test_binary + ' ' + test)
|
||||
test_queue.put((command, job_id, test))
|
||||
test_lock = threading.Lock()
|
||||
job_id = 0
|
||||
logger.log(str(-1) + ': TESTCNT ' + ' ' + str(len(tests)))
|
||||
|
||||
exit_code = 0
|
||||
def run_job((command, job_id, test)):
|
||||
@ -157,22 +154,29 @@ def run_job((command, job_id, test)):
|
||||
line = sub.stdout.readline()
|
||||
if line == '':
|
||||
break
|
||||
log.put(str(job_id) + '> ' + line.rstrip())
|
||||
logger.log(str(job_id) + '> ' + line.rstrip())
|
||||
|
||||
code = sub.wait()
|
||||
runtime_ms = int(1000 * (time.time() - begin))
|
||||
log.put(str(job_id) + ': EXIT ' + str(code) + ' ' + str(runtime_ms))
|
||||
logger.log(str(job_id) + ': EXIT ' + str(code) + ' ' + str(runtime_ms))
|
||||
if code != 0:
|
||||
global exit_code
|
||||
exit_code = code
|
||||
|
||||
def worker():
|
||||
global job_id
|
||||
while True:
|
||||
try:
|
||||
run_job(test_queue.get_nowait())
|
||||
test_queue.task_done()
|
||||
except Queue.Empty:
|
||||
job = None
|
||||
test_lock.acquire()
|
||||
if job_id < len(tests):
|
||||
(test_binary, command, test) = tests[job_id]
|
||||
logger.log(str(job_id) + ': TEST ' + test_binary + ' ' + test)
|
||||
job = (command, job_id, test)
|
||||
job_id += 1
|
||||
test_lock.release()
|
||||
if job is None:
|
||||
return
|
||||
run_job(job)
|
||||
|
||||
def start_daemon(func):
|
||||
t = threading.Thread(target=func)
|
||||
@ -181,9 +185,7 @@ def start_daemon(func):
|
||||
return t
|
||||
|
||||
workers = [start_daemon(worker) for i in range(options.workers)]
|
||||
printer = start_daemon(logger.log)
|
||||
|
||||
[t.join() for t in workers]
|
||||
log.put("")
|
||||
printer.join()
|
||||
logger.end()
|
||||
sys.exit(exit_code)
|
||||
|
Loading…
x
Reference in New Issue
Block a user