diff options
Diffstat (limited to 'py/test/Ice/blobject/run.py')
-rwxr-xr-x | py/test/Ice/blobject/run.py | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/py/test/Ice/blobject/run.py b/py/test/Ice/blobject/run.py index aac96096db2..b31660e7e4c 100755 --- a/py/test/Ice/blobject/run.py +++ b/py/test/Ice/blobject/run.py @@ -15,18 +15,14 @@ if sys.version_info[1] == 3 and sys.platform != 'darwin': print "Test skipped due to python 2.3" sys.exit(0) -for toplevel in [".", "..", "../..", "../../..", "../../../.."]: - toplevel = os.path.normpath(toplevel) - if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")): - break -else: +path = [ ".", "..", "../..", "../../..", "../../../.." ] +head = os.path.dirname(sys.argv[0]) +if len(head) > 0: + path = [os.path.join(head, p) for p in path] +path = [os.path.abspath(p) for p in path if os.path.exists(os.path.join(p, "scripts", "TestUtil.py")) ] +if len(path) == 0: raise "can't find toplevel directory!" +sys.path.append(os.path.join(path[0])) +from scripts import * -sys.path.append(os.path.join(toplevel, "config")) -import TestUtil -TestUtil.processCmdLine() - -name = os.path.join("Ice", "blobject") - -TestUtil.clientServerTest(name) -sys.exit(0) +TestUtil.clientServerTest() |