diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-03-23 17:13:06 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-03-23 17:13:06 +0100 |
commit | 69f068b112747fd080cfe70ef6ff15a0ff25db4e (patch) | |
tree | 53c04b9b4d7e7e3bab215975befc60b8bac3a7c0 /scripts/TestUtil.py | |
parent | Fixed csharp unix build (diff) | |
download | ice-69f068b112747fd080cfe70ef6ff15a0ff25db4e.tar.bz2 ice-69f068b112747fd080cfe70ef6ff15a0ff25db4e.tar.xz ice-69f068b112747fd080cfe70ef6ff15a0ff25db4e.zip |
Fix for running IceTouch tests
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 531942c49a4..2f404b07a31 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -280,7 +280,7 @@ defaultMapping = None testErrors = [] toplevel = None -path = [ ".", "..", "../..", "../../..", "../../../..", "../../../../..", "../../../../../..", +path = [ "ice", ".", "..", "../..", "../../..", "../../../..", "../../../../..", "../../../../../..", "../../../../../../..", "../../../../../../../..", "../../../../../../../../.." ] head = os.path.dirname(sys.argv[0]) if len(head) > 0: @@ -2137,6 +2137,7 @@ def runTests(start, expanded, num = 0, script = False): dir = os.path.join(toplevel, "java", "test", "src", "main", i) else: dir = os.path.join(toplevel, i) + dir = os.path.normpath(dir) sys.stdout.write("\n") if num > 0: |