diff options
author | Jose <jose@zeroc.com> | 2016-09-06 13:50:57 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-09-06 13:50:57 +0200 |
commit | dbd7ec0180e03a1ca744ff7f4aab7bf87a3e37fa (patch) | |
tree | 9c27b947733ec94340c017fbdc45ad1c3a8f4877 /allTests.py | |
parent | Fixed ICE-7311 - handling of Java errors with AMD (diff) | |
download | ice-dbd7ec0180e03a1ca744ff7f4aab7bf87a3e37fa.tar.bz2 ice-dbd7ec0180e03a1ca744ff7f4aab7bf87a3e37fa.tar.xz ice-dbd7ec0180e03a1ca744ff7f4aab7bf87a3e37fa.zip |
ICE-7189 - normalize filter/rfilter input on Windows
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) |