summaryrefslogtreecommitdiff
path: root/cpp/test/IceBox/configuration/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceBox/configuration/run.py')
-rwxr-xr-xcpp/test/IceBox/configuration/run.py38
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)