| Index: tools/testrunner/local/testsuite.py
|
| diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py
|
| index c8e43521e71e8e3be99842d98bb8d250e0eb15c8..e0fff0d11a3d176b3faaac43819e827c552fea0b 100644
|
| --- a/tools/testrunner/local/testsuite.py
|
| +++ b/tools/testrunner/local/testsuite.py
|
| @@ -226,7 +226,7 @@ class TestSuite(object):
|
| continue
|
| if len(argpath) == 1 or (len(argpath) == 2 and argpath[1] == '*'):
|
| return # Don't filter, run all tests in this suite.
|
| - path = os.path.sep.join(argpath[1:])
|
| + path = '/'.join(argpath[1:])
|
| if path[-1] == '*':
|
| path = path[:-1]
|
| globs.append(path)
|
|
|