diff options
Diffstat (limited to 'allTests.py')
-rwxr-xr-x | allTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/allTests.py b/allTests.py index a0ddb11c660..ec63af28751 100755 --- a/allTests.py +++ b/allTests.py @@ -30,7 +30,7 @@ for d in languages: tests = [] - tests = [ (os.path.join(d, "test", x), y) for x, y in current_mod.tests ] + tests = [ (os.path.join(d, "test", os.path.normpath(x)), y) for x, y in current_mod.tests ] if len(tests) > 0: testGroups.extend(tests) |