diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-08-17 16:48:40 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-08-17 16:48:40 -0400 |
commit | 8d5ecd4f43c722434d07a34449f817d2735dbd89 (patch) | |
tree | f38692cf112b3b929e1d100cc93ada05de5476b1 /cpp/test/Ice/plugin/run.py | |
parent | Fixed bug #ICE-4360: slice2cpp no longer generates ProxyType resp. PointerTyp... (diff) | |
download | ice-8d5ecd4f43c722434d07a34449f817d2735dbd89.tar.bz2 ice-8d5ecd4f43c722434d07a34449f817d2735dbd89.tar.xz ice-8d5ecd4f43c722434d07a34449f817d2735dbd89.zip |
Fixed bug #ICE-4840: incorrect ["cpp:type:array"] code generated
Fixed test/Ice/plugin run.py script
Diffstat (limited to 'cpp/test/Ice/plugin/run.py')
-rwxr-xr-x | cpp/test/Ice/plugin/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/plugin/run.py b/cpp/test/Ice/plugin/run.py index 3c4472ca289..a7a2bba1f5c 100755 --- a/cpp/test/Ice/plugin/run.py +++ b/cpp/test/Ice/plugin/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) |