diff options
Diffstat (limited to 'cpp/test/Ice/hash/run.py')
-rwxr-xr-x | cpp/test/Ice/hash/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/hash/run.py b/cpp/test/Ice/hash/run.py index 3c4472ca289..a7a2bba1f5c 100755 --- a/cpp/test/Ice/hash/run.py +++ b/cpp/test/Ice/hash/run.py @@ -17,8 +17,8 @@ if len(head) > 0: 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(path[0], "scripts")) +import TestUtil client = os.path.join(os.getcwd(), "client") TestUtil.simpleTest(client) |