From 4b9622fb1ef418ace8ff3b55fe855680c03294ee Mon Sep 17 00:00:00 2001 From: "pbos@webrtc.org" Date: Thu, 5 Feb 2015 12:37:24 +0000 Subject: [PATCH] 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 --- third_party/gtest-parallel/OWNERS | 1 + third_party/gtest-parallel/README.webrtc | 2 +- third_party/gtest-parallel/gtest-parallel | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 third_party/gtest-parallel/OWNERS diff --git a/third_party/gtest-parallel/OWNERS b/third_party/gtest-parallel/OWNERS new file mode 100644 index 0000000000..6782b61fca --- /dev/null +++ b/third_party/gtest-parallel/OWNERS @@ -0,0 +1 @@ +pbos@webrtc.org diff --git a/third_party/gtest-parallel/README.webrtc b/third_party/gtest-parallel/README.webrtc index 658ef95b0f..3e55ab0dfe 100644 --- a/third_party/gtest-parallel/README.webrtc +++ b/third_party/gtest-parallel/README.webrtc @@ -1,5 +1,5 @@ URL: https://github.com/google/gtest-parallel -Version: e61a8975cc124c9a07cb903b76b46b3e669cd179 +Version: f0bea591818cefc0327e5c9f8a14633971cf0470 License: Apache 2.0 License File: LICENSE diff --git a/third_party/gtest-parallel/gtest-parallel b/third_party/gtest-parallel/gtest-parallel index 2830e818fa..8d495cecce 100755 --- a/third_party/gtest-parallel/gtest-parallel +++ b/third_party/gtest-parallel/gtest-parallel @@ -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,