diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-03-31 01:31:36 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-03-31 01:31:36 +0000 |
commit | 7f94238dd3d2623e416fb1e8236e55848fc2c8f8 (patch) | |
tree | 36d16e6153ecf886f48befd99f12bb08d8427de6 /scripts/tests | |
parent | Fixed previous Util.py fix (diff) | |
download | ice-7f94238dd3d2623e416fb1e8236e55848fc2c8f8.tar.bz2 ice-7f94238dd3d2623e416fb1e8236e55848fc2c8f8.tar.xz ice-7f94238dd3d2623e416fb1e8236e55848fc2c8f8.zip |
Fixes for ICE-7012 - fixed some leaks in IceSSL/tests
Diffstat (limited to 'scripts/tests')
-rw-r--r-- | scripts/tests/Ice/optional.py | 2 | ||||
-rw-r--r-- | scripts/tests/Ice/slicing/objects.py | 2 | ||||
-rw-r--r-- | scripts/tests/Ice/stream.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/tests/Ice/optional.py b/scripts/tests/Ice/optional.py index 2b1d1bb97a1..fdc01a95007 100644 --- a/scripts/tests/Ice/optional.py +++ b/scripts/tests/Ice/optional.py @@ -20,4 +20,4 @@ if Mapping.getByPath(__name__).hasSource("Ice/optional", "serveramd"): ClientAMDServerTestCase("client/amd server with sliced format", props={ "Ice.Default.SlicedFormat" : True }), ] -TestSuite(__name__, testcases)
\ No newline at end of file +TestSuite(__name__, testcases) diff --git a/scripts/tests/Ice/slicing/objects.py b/scripts/tests/Ice/slicing/objects.py index 897e560f0cb..16ff243e3ec 100644 --- a/scripts/tests/Ice/slicing/objects.py +++ b/scripts/tests/Ice/slicing/objects.py @@ -10,4 +10,4 @@ TestSuite(__name__, [ ClientServerTestCase(), ClientServerTestCase("client/server with 1.0 encoding", props={ "Ice.Default.EncodingVersion" : "1.0" }), -])
\ No newline at end of file +], options = { "valgrind" : [False] }) diff --git a/scripts/tests/Ice/stream.py b/scripts/tests/Ice/stream.py index d7f43eb51bd..b65bbe148ce 100644 --- a/scripts/tests/Ice/stream.py +++ b/scripts/tests/Ice/stream.py @@ -11,4 +11,4 @@ TestSuite(__name__, [ ClientTestCase("client with default encoding"), ClientTestCase("client with 1.0 encoding", props={ "Ice.Default.EncodingVersion" : "1.0" }) -])
\ No newline at end of file +]) |