diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-06-13 15:34:43 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-06-13 15:34:43 +0000 |
commit | ca3bb9c1fdb746092c06bb7f7d6068820ba15923 (patch) | |
tree | 8ca479c2792b583b7bf13821c3a5c0f4de29e272 /cs/test/Ice/slicing/exceptions/run.py | |
parent | Fixed default location of icecs (diff) | |
download | ice-ca3bb9c1fdb746092c06bb7f7d6068820ba15923.tar.bz2 ice-ca3bb9c1fdb746092c06bb7f7d6068820ba15923.tar.xz ice-ca3bb9c1fdb746092c06bb7f7d6068820ba15923.zip |
Added support for --protocol, --compress, --host, --threadPerConnection
Diffstat (limited to 'cs/test/Ice/slicing/exceptions/run.py')
-rwxr-xr-x | cs/test/Ice/slicing/exceptions/run.py | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/cs/test/Ice/slicing/exceptions/run.py b/cs/test/Ice/slicing/exceptions/run.py index b43d7abaff1..28a33b838dd 100755 --- a/cs/test/Ice/slicing/exceptions/run.py +++ b/cs/test/Ice/slicing/exceptions/run.py @@ -20,27 +20,10 @@ else: sys.path.append(os.path.join(toplevel, "config")) import TestUtil -def usage(): - print "usage: " + sys.argv[0] + " [-m]" - sys.exit(2) - -try: - opts, args = getopt.getopt(sys.argv[1:], "m") -except getopt.GetoptError: - usage() - -mono = 0 -for o, a in opts: - if o == "-m": - mono = 1 - -if not TestUtil.isWin32(): - mono = 1 - name = os.path.join("Ice", "slicing", "exceptions") print "tests with regular server." -TestUtil.clientServerTest(mono, name) +TestUtil.clientServerTest(name) print "tests with AMD server." -TestUtil.clientServerTestWithOptionsAndNames(mono, name, "", "", "serveramd", "client") +TestUtil.clientServerTestWithOptionsAndNames(name, "", "", "serveramd", "client") sys.exit(0) |