| 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]
|
|
|