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

Unified Diff: tools/isolate/isolate_smoke_test.py

Issue 10377105: Add scripts to list or trace all test cases in a gtest executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 7 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 | « tools/isolate/isolate.py ('k') | tools/isolate/list_test_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/isolate/isolate_smoke_test.py
diff --git a/tools/isolate/isolate_smoke_test.py b/tools/isolate/isolate_smoke_test.py
index f16930a9f4df9232f102bbbc071228b2a09b1758..d0dd9a7239df6c4693b9e593f3fe5655ba899fd7 100755
--- a/tools/isolate/isolate_smoke_test.py
+++ b/tools/isolate/isolate_smoke_test.py
@@ -460,7 +460,7 @@ class Isolate_trace(IsolateBase):
def test_fail(self):
try:
- self._execute('trace', 'fail.isolate', [], True)
+ self._execute('trace', 'fail.isolate', ['-v'], True)
self.fail()
except subprocess.CalledProcessError, e:
out = e.output
@@ -469,7 +469,7 @@ class Isolate_trace(IsolateBase):
# In theory, there should be 2 \n at the end of expected but for an
# unknown reason there's 3 \n on Windows so just rstrip() and compare the
# text, that's sufficient for this test.
- expected = 'Failure: 1\nFailing'
+ expected = 'Failing'
self.assertEquals(expected, out.rstrip())
def test_missing_trailing_slash(self):
« no previous file with comments | « tools/isolate/isolate.py ('k') | tools/isolate/list_test_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698