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

Unified Diff: tools/test.py

Issue 125248: Make sure to treat tests that time out as having the (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.py
===================================================================
--- tools/test.py (revision 2195)
+++ tools/test.py (working copy)
@@ -372,6 +372,8 @@
def UnexpectedOutput(self):
if self.HasCrashed():
outcome = CRASH
+ elif self.HasTimedOut():
+ outcome = TIMEOUT
elif self.HasFailed():
outcome = FAIL
else:
@@ -390,7 +392,7 @@
def HasTimedOut(self):
return self.output.timed_out;
-
+
def HasFailed(self):
execution_failed = self.test.DidFail(self.output)
if self.test.IsNegative():
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698