Roll gtest-parallel.

Brings in a patch that reports the exit code for a failing test.

Also adding myself to new OWNERS file under gtest-parallel.

BUG=4234
R=kjellander@webrtc.org, mflodman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/34119004

Cr-Commit-Position: refs/heads/master@{#8250}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8250 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org 2015-02-05 12:37:24 +00:00
parent 3a87630629
commit 4b9622fb1e
3 changed files with 4 additions and 1 deletions

1
third_party/gtest-parallel/OWNERS vendored Normal file
View File

@ -0,0 +1 @@
pbos@webrtc.org

View File

@ -1,5 +1,5 @@
URL: https://github.com/google/gtest-parallel
Version: e61a8975cc124c9a07cb903b76b46b3e669cd179
Version: f0bea591818cefc0327e5c9f8a14633971cf0470
License: Apache 2.0
License File: LICENSE

View File

@ -48,6 +48,8 @@ class FilterFormat:
self.failures.append(self.tests[job_id])
for line in self.outputs[job_id]:
print line
print ("[%d/%d] %s returned/aborted with exit code %d (%d ms)"
% (self.finished_tests, self.total_tests, test, exit_code, time_ms))
elif command == "TESTCNT":
self.total_tests = int(arg.split(' ', 1)[1])
print "[0/%d] Running tests...\r" % self.total_tests,