diff options
author | Michi Henning <michi@zeroc.com> | 2004-03-29 03:40:57 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-03-29 03:40:57 +0000 |
commit | a766495f65576d8e2e9a6eacd00c25c85547115d (patch) | |
tree | 4a22f9c62e21da98894f8df0fe75b5fbda90b266 /cs/test/Ice/slicing/exceptions/run.py | |
parent | Removed warning about unused variable. (diff) | |
download | ice-a766495f65576d8e2e9a6eacd00c25c85547115d.tar.bz2 ice-a766495f65576d8e2e9a6eacd00c25c85547115d.tar.xz ice-a766495f65576d8e2e9a6eacd00c25c85547115d.zip |
*** empty log message ***
Diffstat (limited to 'cs/test/Ice/slicing/exceptions/run.py')
-rwxr-xr-x | cs/test/Ice/slicing/exceptions/run.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/cs/test/Ice/slicing/exceptions/run.py b/cs/test/Ice/slicing/exceptions/run.py new file mode 100755 index 00000000000..1c152dfcafc --- /dev/null +++ b/cs/test/Ice/slicing/exceptions/run.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python +# ********************************************************************** +# +# Copyright (c) 2003 +# ZeroC, Inc. +# Billerica, MA, USA +# +# All Rights Reserved. +# +# Ice is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License version 2 as published by +# the Free Software Foundation. +# +# ********************************************************************** + +import os, sys + +for toplevel in [".", "..", "../..", "../../..", "../../../.."]: + toplevel = os.path.normpath(toplevel) + if os.path.exists(os.path.join(toplevel, "config", "TestUtil.py")): + break +else: + raise "can't find toplevel directory!" + +sys.path.append(os.path.join(toplevel, "config")) +import TestUtil + +name = os.path.join("Ice", "slicing", "exceptions") + +print "tests with regular server." +TestUtil.clientServerTest(name) +#print "tests with AMD server." +#TestUtil.clientServerTestWithOptionsAndNames(name, "", "", "serveramd", "client") +sys.exit(0) |