diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-01 00:18:53 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-01 00:18:53 +0000 |
commit | d3d0ba47e606c081d2ffb73f81c86063491214b6 (patch) | |
tree | 35af31a028fd8d7bbdc07a49205504eb2d2d4fe9 /cpp/allTests.py | |
parent | comments (diff) | |
download | ice-d3d0ba47e606c081d2ffb73f81c86063491214b6.tar.bz2 ice-d3d0ba47e606c081d2ffb73f81c86063491214b6.tar.xz ice-d3d0ba47e606c081d2ffb73f81c86063491214b6.zip |
cleanup
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index 1901930c9cc..4cdd5c90fa9 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -19,7 +19,7 @@ else: raise "can't find toplevel directory!" # -# List of all tests. +# List of all basic tests. # tests = [ \ "IceUtil/thread", \ @@ -48,10 +48,10 @@ tests = [ \ ] # -# Only add Glacier tests for Linux systems +# Certain tests only work on Linux. # -# The slice on sys.platform is required - my cygwin comes back -# as cygwin_nt-4.01 +# 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 += [ \ @@ -59,7 +59,7 @@ if sys.platform != "win32" and sys.platform[:6] != "cygwin": ] # -# The user can supply on the command line a subset of tests to run. +# The user can supply a subset of tests on the command line. # if sys.argv[1:]: print "limiting tests" |