diff options
Diffstat (limited to 'python/test')
-rwxr-xr-x | python/test/Slice/escape/Client.py | 2 | ||||
-rwxr-xr-x | python/test/Slice/import/Client.py | 2 | ||||
-rwxr-xr-x | python/test/Slice/macros/Client.py | 2 | ||||
-rwxr-xr-x | python/test/Slice/structure/Client.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/python/test/Slice/escape/Client.py b/python/test/Slice/escape/Client.py index 126d2810482..1946d09fc94 100755 --- a/python/test/Slice/escape/Client.py +++ b/python/test/Slice/escape/Client.py @@ -12,7 +12,7 @@ import os, sys, traceback for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) - if os.path.exists(os.path.join(toplevel, "python", "Ice.py")): + if os.path.exists(os.path.join(toplevel, "python", "Ice", "__init__.py")): break else: raise RuntimeError("can't find toplevel directory!") diff --git a/python/test/Slice/import/Client.py b/python/test/Slice/import/Client.py index 94a35d45582..c27f67795ac 100755 --- a/python/test/Slice/import/Client.py +++ b/python/test/Slice/import/Client.py @@ -12,7 +12,7 @@ import os, sys, traceback for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) - if os.path.exists(os.path.join(toplevel, "python", "Ice.py")): + if os.path.exists(os.path.join(toplevel, "python", "Ice", "__init__.py")): break else: raise RuntimeError("can't find toplevel directory!") diff --git a/python/test/Slice/macros/Client.py b/python/test/Slice/macros/Client.py index ae60009a31b..5fa054dde5a 100755 --- a/python/test/Slice/macros/Client.py +++ b/python/test/Slice/macros/Client.py @@ -12,7 +12,7 @@ import os, sys, traceback for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) - if os.path.exists(os.path.join(toplevel, "python", "Ice.py")): + if os.path.exists(os.path.join(toplevel, "python", "Ice", "__init__.py")): break else: raise RuntimeError("can't find toplevel directory!") diff --git a/python/test/Slice/structure/Client.py b/python/test/Slice/structure/Client.py index 2a9e23246db..19fb2c8a98e 100755 --- a/python/test/Slice/structure/Client.py +++ b/python/test/Slice/structure/Client.py @@ -12,7 +12,7 @@ import os, sys, traceback for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) - if os.path.exists(os.path.join(toplevel, "python", "Ice.py")): + if os.path.exists(os.path.join(toplevel, "python", "Ice", "__init__.py")): break else: raise RuntimeError("can't find toplevel directory!") |