Chromium Code Reviews

Unified Diff: test/sputnik/testcfg.py

Issue 6824040: Fix tools/test.py to allow CTRL+C to work correctly again. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « test/mjsunit/testcfg.py ('k') | tools/test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/sputnik/testcfg.py
===================================================================
--- test/sputnik/testcfg.py (revision 7551)
+++ test/sputnik/testcfg.py (working copy)
@@ -57,7 +57,7 @@
def AfterRun(self, result):
# Dispose the temporary file if everything looks okay.
- if not result.HasPreciousOutput(): self.tmpfile.Dispose()
+ if result is None or not result.HasPreciousOutput(): self.tmpfile.Dispose()
self.tmpfile = None
def GetCommand(self):
« no previous file with comments | « test/mjsunit/testcfg.py ('k') | tools/test.py » ('j') | no next file with comments »

Powered by Google App Engine