summaryrefslogtreecommitdiff
path: root/allTests.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-03-27 15:17:26 -0230
committerDwayne Boone <dwayne@zeroc.com>2015-03-27 15:17:26 -0230
commit579b5038968ac977d3a18b897abe29c9e468113c (patch)
tree147734dd76df41395e131f40f4b3c438f566c953 /allTests.py
parentICE-6405 allTests.py should return with exit code of failed test (diff)
downloadice-579b5038968ac977d3a18b897abe29c9e468113c.tar.bz2
ice-579b5038968ac977d3a18b897abe29c9e468113c.tar.xz
ice-579b5038968ac977d3a18b897abe29c9e468113c.zip
Do not run C# tests from top level allTests.py on unix
Diffstat (limited to 'allTests.py')
-rwxr-xr-xallTests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/allTests.py b/allTests.py
index d2e4e2c6161..316f4ff9419 100755
--- a/allTests.py
+++ b/allTests.py
@@ -15,7 +15,9 @@ import TestUtil
testGroups = []
-languages = [ "cpp", "java", "csharp", "python", "ruby", "php", "js" ]
+languages = [ "cpp", "java", "python", "ruby", "php", "js" ]
+if TestUtil.isWin32():
+ languages.append("csharp")
if TestUtil.isDarwin():
languages.append("objective-c")