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

Unified Diff: test/cctest/testcfg.py

Issue 8763: Change the test status file parser to fail if the line contains unparsed toke... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 2 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 | « SConstruct ('k') | tools/test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/testcfg.py
===================================================================
--- test/cctest/testcfg.py (revision 671)
+++ test/cctest/testcfg.py (working copy)
@@ -29,8 +29,8 @@
import os
from os.path import join, dirname, exists
import platform
+import utils
-
DEBUG_FLAGS = ['--enable-slow-asserts', '--debug-code', '--verify-heap']
@@ -65,7 +65,7 @@
def ListTests(self, current_path, path, mode):
executable = join('obj', 'test', mode, 'cctest')
- if (platform.system() == 'Windows'):
+ if utils.IsWindows():
executable += '.exe'
output = test.Execute([executable, '--list'], self.context)
if output.exit_code != 0:
« no previous file with comments | « SConstruct ('k') | tools/test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698