summaryrefslogtreecommitdiff
path: root/php/test/Ice/operations/run.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-08-05 22:22:01 +0000
committerMark Spruiell <mes@zeroc.com>2003-08-05 22:22:01 +0000
commit221c52e161f0cb91df1711052dfa4400d0f54273 (patch)
tree98d457c7c4fa446a7879615366dc4f2d6f44731c /php/test/Ice/operations/run.py
parentinitial check-in (diff)
downloadice-221c52e161f0cb91df1711052dfa4400d0f54273.tar.bz2
ice-221c52e161f0cb91df1711052dfa4400d0f54273.tar.xz
ice-221c52e161f0cb91df1711052dfa4400d0f54273.zip
adding test scripts
Diffstat (limited to 'php/test/Ice/operations/run.py')
-rwxr-xr-xphp/test/Ice/operations/run.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/php/test/Ice/operations/run.py b/php/test/Ice/operations/run.py
new file mode 100755
index 00000000000..6b6018b0b5c
--- /dev/null
+++ b/php/test/Ice/operations/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", "operations")
+
+print "tests with regular server."
+TestUtil.clientServerTest(name)
+print "tests with AMD server."
+TestUtil.clientServerTestWithOptionsAndNames(name, "", "", "serveramd", "Client.php")
+sys.exit(0)