diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-11-08 10:25:32 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-11-08 10:25:32 +0100 |
commit | 7310ad264e17f639fb58dd947ef1c31295e4501c (patch) | |
tree | 3cb77562f0c445da903c1ae09ee2b6d80c139a6a /cpp/allTests.py | |
parent | Updated GUI online help to use doc.zeroc.com, in a web browser (diff) | |
download | ice-7310ad264e17f639fb58dd947ef1c31295e4501c.tar.bz2 ice-7310ad264e17f639fb58dd947ef1c31295e4501c.tar.xz ice-7310ad264e17f639fb58dd947ef1c31295e4501c.zip |
Fixed MinGW port
- The build no longer requires Cygwin
- Running the tests no longer requires setting CPP_COMPILER, TestUtil.py che
for RI_DEVKIT in the environment to figure out if running with MinGW devki
- DynamicLibrary no longer appends the "d" suffix when compiling with debug
- COMPSUFFIX is now defined when compiling Ice
- Much simplified the build system by removing all the checks for MinGW
in makefiles, MinGW settings are now located to Make.rules.MINGW only.
- Fixed allTests.py to skip plugin and metrics tests.
- Fixed build instructions.
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index 2228c1915eb..faaae708b40 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -67,10 +67,10 @@ tests = [ ("Ice/defaultServant", ["core"]), ("Ice/defaultValue", ["core"]), ("Ice/invoke", ["core"]), - ("Ice/plugin", ["core"]), + ("Ice/plugin", ["core", "nomingw"]), ("Ice/hash", ["once"]), ("Ice/admin", ["core"]), - ("Ice/metrics", ["core", "nossl", "noipv6", "nocompress"]), + ("Ice/metrics", ["core", "nossl", "noipv6", "nocompress", "nomingw"]), ("Ice/enums", ["once"]), ("IceSSL/configuration", ["once", "novalgrind"]), # valgrind doesn't work well with openssl ("IceBox/configuration", ["core", "noipv6", "novc90", "nomingw", "nomx"]), @@ -79,7 +79,7 @@ tests = [ ("Freeze/complex", ["once", "novc90", "nomingw"]), ("Freeze/evictor", ["core", "novc90", "nomingw"]), ("Freeze/fileLock", ["core", "novc90", "nomingw"]), - ("IceStorm/single", ["service", "novc90", "noappverifier", "nomingw"]), # This test doesn't work with appverifier is sensitive to timeouts. + ("IceStorm/single", ["service", "novc90", "noappverifier", "nomingw"]), # This test doesn't work with appverifier is sensitive to timeouts. ("IceStorm/federation", ["service", "novc90", "nomingw"]), ("IceStorm/federation2", ["service", "novc90", "nomingw"]), ("IceStorm/stress", ["service", "stress", "novc90", "noappverifier", "nomingw"]), # This test is very slow with appverifier. |