Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(980)

Unified Diff: scripts/common/unittests/gtest_utils_test.py

Issue 10556042: Update GTest Parsing Code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « scripts/common/gtest_utils.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/common/unittests/gtest_utils_test.py
diff --git a/scripts/common/unittests/gtest_utils_test.py b/scripts/common/unittests/gtest_utils_test.py
index 2194377ce805b50122b45a6820ff94e13137395a..6f4a71d7deaf0dfaf178832e0caeb60c97352e5b 100755
--- a/scripts/common/unittests/gtest_utils_test.py
+++ b/scripts/common/unittests/gtest_utils_test.py
@@ -16,7 +16,8 @@ FAILURES = ['NavigationControllerTest.Reload',
'NavigationControllerTest/SpdyNetworkTransTest.Constructor/0',
'BadTest.TimesOut',
'MoreBadTest.TimesOutAndFails',
- 'SomeOtherTest.SwitchTypes']
+ 'SomeOtherTest.SwitchTypes',
+ 'SomeOtherTest.FAILS_FooBar']
M-A Ruel 2012/06/18 14:55:57 maybe renaming it to SomeOtherTest.FAILS_ThisTest
csharp 2012/06/18 15:17:39 Done.
FAILS_FAILURES = ['SomeOtherTest.FAILS_Bar']
FLAKY_FAILURES = ['SomeOtherTest.FLAKY_Baz']
@@ -115,7 +116,7 @@ Handling SIGTERM.
Successfully wrote to shutdown pipe, resetting signal handler.
[ FAILED ] MoreBadTest.TimesOutAndFails (31000 ms)
-[----------] 4 tests from SomeOtherTest
+[----------] 5 tests from SomeOtherTest
[ RUN ] SomeOtherTest.SwitchTypes
%(switch_errors)s
[ FAILED ] SomeOtherTest.SwitchTypes (40 ms)
@@ -124,18 +125,21 @@ Successfully wrote to shutdown pipe, resetting signal handler.
[ RUN ] SomeOtherTest.FAILS_Bar
Some error message for a failing test.
[ FAILED ] SomeOtherTest.FAILS_Bar (40 ms)
+[ RUN ] SomeOtherTest.FAILS_FooBar
+[0521/041343:ERROR:test_launcher.cc(384)] Test timeout (45000 ms) exceeded for SomeOtherTest.FAILS_FooBar
[ RUN ] SomeOtherTest.FLAKY_Baz
Some error message for a flaky test.
[ FAILED ] SomeOtherTest.FLAKY_Baz (40 ms)
[----------] 2 tests from SomeOtherTest (60 ms total)
[----------] Global test environment tear-down
-[==========] 7 tests from 3 test cases ran. (3750 ms total)
+[==========] 8 tests from 3 test cases ran. (3750 ms total)
[ PASSED ] 4 tests.
-[ FAILED ] 3 tests, listed below:
+[ FAILED ] 4 tests, listed below:
[ FAILED ] NavigationControllerTest.Reload
[ FAILED ] NavigationControllerTest/SpdyNetworkTransTest.Constructor/0
[ FAILED ] SomeOtherTest.SwitchTypes
+[ FAILED ] SomeOtherTest.FAILS_FooBar
1 FAILED TEST
YOU HAVE 10 DISABLED TESTS
@@ -232,16 +236,19 @@ Successfully wrote to shutdown pipe, resetting signal handler.
[ RUN ] SomeOtherTest.FAILS_Bar
Some error message for a failing test.
[ FAILED ] SomeOtherTest.FAILS_Bar (40 ms)
+[ RUN ] SomeOtherTest.FAILS_FooBar
+[0521/041343:ERROR:test_launcher.cc(384)] Test timeout (45000 ms) exceeded for SomeOtherTest.FAILS_FooBar
[ RUN ] SomeOtherTest.FLAKY_Baz
Some error message for a flaky test.
[ FAILED ] SomeOtherTest.FLAKY_Baz (40 ms)
[----------] 2 tests from SomeOtherTest (60 ms total)
[----------] Global test environment tear-down
-[==========] 6 tests from 3 test cases ran. (3750 ms total)
+[==========] 7 tests from 3 test cases ran. (3750 ms total)
[ PASSED ] 5 tests.
-[ FAILED ] 1 test, listed below:
+[ FAILED ] 2 test, listed below:
[ FAILED ] SomeOtherTest.SwitchTypes
+[ FAILED ] SomeOtherTest.FAILS_FooBar
1 FAILED TEST
YOU HAVE 10 DISABLED TESTS
« no previous file with comments | « scripts/common/gtest_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698