summaryrefslogtreecommitdiff
path: root/java/allTests.py
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-01 00:18:53 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-01 00:18:53 +0000
commitd3d0ba47e606c081d2ffb73f81c86063491214b6 (patch)
tree35af31a028fd8d7bbdc07a49205504eb2d2d4fe9 /java/allTests.py
parentcomments (diff)
downloadice-d3d0ba47e606c081d2ffb73f81c86063491214b6.tar.bz2
ice-d3d0ba47e606c081d2ffb73f81c86063491214b6.tar.xz
ice-d3d0ba47e606c081d2ffb73f81c86063491214b6.zip
cleanup
Diffstat (limited to 'java/allTests.py')
-rwxr-xr-xjava/allTests.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/java/allTests.py b/java/allTests.py
index 9ad0698ab8a..f0769378a9d 100755
--- a/java/allTests.py
+++ b/java/allTests.py
@@ -19,7 +19,7 @@ else:
raise "can't find toplevel directory!"
#
-# List of all tests.
+# List of all basic tests.
#
tests = [ \
"Ice/operations", \
@@ -33,11 +33,21 @@ tests = [ \
"Freeze/cursor", \
"Freeze/dbmap", \
"Freeze/complex", \
- "Glacier/starter", \
]
#
-# The user can supply on the command line a subset of tests to run.
+# Certain tests only work on Linux.
+#
+# The substring on sys.platform is required because some cygwin
+# versions return "cygwin_nt-4.01".
+#
+if sys.platform != "win32" and sys.platform[:6] != "cygwin":
+ tests += [ \
+ "Glacier/starter", \
+ ]
+
+#
+# The user can supply a subset of tests on the command line.
#
if sys.argv[1:]:
print "limiting tests"