diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-12-21 18:46:48 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-12-21 18:46:48 +0100 |
commit | 615be5a748ba8007ada416961c742aaf10628b9a (patch) | |
tree | 7164fab9471dcce76f4a704831f31f152922c5d8 /cpp/test/IceBox/configuration/run.py | |
parent | Fix bug 2520: Test suite unsets ICE_CONFIG to avoid configuration conflicts (diff) | |
download | ice-615be5a748ba8007ada416961c742aaf10628b9a.tar.bz2 ice-615be5a748ba8007ada416961c742aaf10628b9a.tar.xz ice-615be5a748ba8007ada416961c742aaf10628b9a.zip |
- Fixed bug 2482
- Fixed bug 2589
- Fixed bug in Java/C# implementation of Properties clone. The values
were not cloned but shared with the clone.
- Fixed bug in IceBox where the properties admin facet was removed only
for services that had a communicator.
- Added IceBox/configuration tests.
Diffstat (limited to 'cpp/test/IceBox/configuration/run.py')
-rwxr-xr-x | cpp/test/IceBox/configuration/run.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp/test/IceBox/configuration/run.py b/cpp/test/IceBox/configuration/run.py new file mode 100755 index 00000000000..e631a337b7c --- /dev/null +++ b/cpp/test/IceBox/configuration/run.py @@ -0,0 +1,38 @@ +#!/usr/bin/env python +# ********************************************************************** +# +# Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. +# +# This copy of Ice is licensed to you under the terms described in the +# ICE_LICENSE file included in this distribution. +# +# ********************************************************************** + +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 +import IceGridAdmin + +name = os.path.join("IceBox", "configuration") +testdir = os.path.dirname(os.path.abspath(__file__)) +icebox = TestUtil.getIceBox(testdir); + +TestUtil.addLdPath(testdir) + +cwd = os.getcwd() +os.chdir(testdir) + +TestUtil.clientServerTestWithOptionsAndNames(name, "--Ice.Config=config.icebox", "", icebox, "client") +TestUtil.clientServerTestWithOptionsAndNames(name, "--Ice.Config=config.icebox2", "", icebox, "client") + +os.chdir(cwd) + +sys.exit(0) |