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

Unified Diff: tests/gtest_fake/gtest_fake_base.py

Issue 12459014: Implement clustering support in run_test_cases.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/swarm_client
Patch Set: Fixes Created 7 years, 9 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
Index: tests/gtest_fake/gtest_fake_base.py
diff --git a/tests/gtest_fake/gtest_fake_base.py b/tests/gtest_fake/gtest_fake_base.py
index 74cc4d280e153c01882bd10743c9becdaa0f7b28..3ca955a60dbd5e915223087aaf31cf3301ef3947 100644
--- a/tests/gtest_fake/gtest_fake_base.py
+++ b/tests/gtest_fake/gtest_fake_base.py
@@ -14,8 +14,8 @@ def get_test_output(test_name):
'[----------] Global test environment set-up.\n'
'[----------] 1 test from %(fixture)s\n'
'[ RUN ] %(fixture)s.%(case)s\n'
- '[ OK ] %(fixture)s.%(case)s (0 ms)\n'
- '[----------] 1 test from %(fixture)s (0 ms total)\n'
+ '[ OK ] %(fixture)s.%(case)s (100 ms)\n'
+ '[----------] 1 test from %(fixture)s (100 ms total)\n'
'\n') % {
'fixture': fixture,
'case': case,
@@ -25,7 +25,7 @@ def get_test_output(test_name):
def get_footer(number, total):
return (
'[----------] Global test environment tear-down\n'
- '[==========] %(number)d test from %(total)d test case ran. (0 ms total)\n'
+ '[==========] %(number)d test from %(total)d test case ran. (30 ms total)\n'
'[ PASSED ] %(number)d test.\n'
'\n'
' YOU HAVE 5 DISABLED TESTS\n'

Powered by Google App Engine
This is Rietveld 408576698