summaryrefslogtreecommitdiff
path: root/allTests.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2015-02-16 12:44:31 +0100
committerBenoit Foucher <benoit@zeroc.com>2015-02-16 12:44:31 +0100
commitc4b35b30b99898e9ef1ae44655011b3575d634a3 (patch)
tree87879b8d66e9a85bb0c9022731cff7fe72756183 /allTests.py
parentICE-6307 - Fixed ruby makefile to add ruby static lib path to linker for cust... (diff)
downloadice-c4b35b30b99898e9ef1ae44655011b3575d634a3.tar.bz2
ice-c4b35b30b99898e9ef1ae44655011b3575d634a3.tar.xz
ice-c4b35b30b99898e9ef1ae44655011b3575d634a3.zip
Fixed ICE-6225 - Added headers attribute to WSConnectionInfo
Diffstat (limited to 'allTests.py')
-rwxr-xr-xallTests.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/allTests.py b/allTests.py
index 15746a57e97..bde2bbdba85 100755
--- a/allTests.py
+++ b/allTests.py
@@ -15,11 +15,15 @@ import TestUtil
testGroups = []
-for d in [ "cpp", "java", "cs", "py", "rb", "php", "js" ]:
-
+languages = [ "cpp", "java", "cs", "py", "rb", "php", "js" ]
+if TestUtil.isDarwin():
+ languages.append("objc")
+
+for d in languages:
+
filename = os.path.abspath(os.path.join(os.path.dirname(__file__), d, "allTests.py"))
f = open(filename, "r")
- current_mod = imp.load_module("allTests", f, filename, (".py", "r", imp.PY_SOURCE))
+ current_mod = imp.load_module("allTests", f, filename, (".py", "r", imp.PY_SOURCE))
f.close()
tests = []