diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-09-01 22:55:22 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-09-01 22:55:22 +0000 |
commit | c8e248c5452923f4f4692ebe6f142d59d4172ff4 (patch) | |
tree | 3c28c5c58edba2cab0288e90f18cff810c2ae05d /py/test/Ice/slicing/exceptions/run.py | |
parent | Added missing .depend (diff) | |
download | ice-c8e248c5452923f4f4692ebe6f142d59d4172ff4.tar.bz2 ice-c8e248c5452923f4f4692ebe6f142d59d4172ff4.tar.xz ice-c8e248c5452923f4f4692ebe6f142d59d4172ff4.zip |
global definition fixes for tests & demos cleaning up translator adding
support for dynamically loading Slice files modifying tests to
dynamically load Slice
Diffstat (limited to 'py/test/Ice/slicing/exceptions/run.py')
-rwxr-xr-x | py/test/Ice/slicing/exceptions/run.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/py/test/Ice/slicing/exceptions/run.py b/py/test/Ice/slicing/exceptions/run.py index ec319f83697..10250f514ed 100755 --- a/py/test/Ice/slicing/exceptions/run.py +++ b/py/test/Ice/slicing/exceptions/run.py @@ -22,8 +22,11 @@ import TestUtil name = os.path.join("Ice", "slicing", "exceptions") +serverpath = os.path.join(toplevel, "test", name, "pyserver") +clientpath = os.path.join(toplevel, "test", name, "pyclient") + print "tests with regular server." -TestUtil.clientServerTest(name) +TestUtil.clientServerTestWithPath(name, serverpath, clientpath) #print "tests with AMD server." #TestUtil.clientServerTestWithOptionsAndNames(name, "", "", "serveramd", "client") sys.exit(0) |