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

Unified Diff: tools/testrunner/local/testsuite.py

Issue 11926015: tools/run-tests.py: Fixes for Windows (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 11 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 | « test/mjsunit/testcfg.py ('k') | tools/testrunner/server/compression.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testrunner/local/testsuite.py
diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py
index de5cddd11501c5cf0a3f2261aeb2c19f59995d32..473e8b1efed2e4b860df31707b436b784f7b3654 100644
--- a/tools/testrunner/local/testsuite.py
+++ b/tools/testrunner/local/testsuite.py
@@ -30,6 +30,7 @@ import imp
import os
from . import statusfile
+from . import utils
class TestSuite(object):
@@ -88,6 +89,8 @@ class TestSuite(object):
used_rules = set()
for t in self.tests:
testname = self.CommonTestName(t)
+ if utils.IsWindows():
+ testname = testname.replace("\\", "/")
if testname in self.rules:
used_rules.add(testname)
outcomes = self.rules[testname]
« no previous file with comments | « test/mjsunit/testcfg.py ('k') | tools/testrunner/server/compression.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698