diff options
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/allTests.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py index fefa82f46c2..c8728e97f99 100755 --- a/cpp/allTests.py +++ b/cpp/allTests.py @@ -24,6 +24,7 @@ import TestUtil # List of all basic tests. # tests = [ + ("IceUtil/condvar", ["once", "win32only"]), ("IceUtil/thread", ["once"]), ("IceUtil/unicode", ["once"]), ("IceUtil/inputUtil", ["once"]), @@ -54,7 +55,7 @@ tests = [ ("Ice/servantLocator", ["core"]), ("Ice/interceptor", ["core"]), ("Ice/stringConverter", ["core"]), - ("IceSSL/configuration", ["core"]), + ("IceSSL/configuration", ["once"]), ("IceBox/configuration", ["core", "noipv6"]), ("Freeze/dbmap", ["once"]), ("Freeze/complex", ["once"]), @@ -86,15 +87,5 @@ tests = [ ("Glacier2/staticFiltering", ["service", "noipv6"]), ] -# -# These tests are currently disabled on cygwin -# -if TestUtil.isCygwin() == 0: - tests += [ - ] - -if TestUtil.isWin32(): - tests.insert(0, ("IceUtil/condvar", ["once"])) - if __name__ == "__main__": TestUtil.run(tests) |