diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-04 10:50:28 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-04 10:50:28 +0100 |
commit | 8b4674dbca704b9ffb48cd9a4fee43211e774cce (patch) | |
tree | ac55936ef4ba7b52ed8835c011b7c59cf2d1d3ee /py/test/Ice/slicing/exceptions/AllTests.py | |
parent | Fixed(ICE-5147) - Fix python scripts to not raise strings anymore (diff) | |
download | ice-8b4674dbca704b9ffb48cd9a4fee43211e774cce.tar.bz2 ice-8b4674dbca704b9ffb48cd9a4fee43211e774cce.tar.xz ice-8b4674dbca704b9ffb48cd9a4fee43211e774cce.zip |
ICE-4938: Super compact enoding
Diffstat (limited to 'py/test/Ice/slicing/exceptions/AllTests.py')
-rw-r--r-- | py/test/Ice/slicing/exceptions/AllTests.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/py/test/Ice/slicing/exceptions/AllTests.py b/py/test/Ice/slicing/exceptions/AllTests.py index f8cc9164328..522ccefb26c 100644 --- a/py/test/Ice/slicing/exceptions/AllTests.py +++ b/py/test/Ice/slicing/exceptions/AllTests.py @@ -495,6 +495,8 @@ def allTests(communicator): # most-derived type is unknown and the exception cannot be sliced. # test(t.ice_getEncodingVersion() != Ice.Encoding_1_0) + except Ice.OperationNotExistException: + pass except: test(False) print("ok") @@ -512,6 +514,8 @@ def allTests(communicator): test(ex.b == "base") test(ex.kp == "preserved") test(ex.kpd == "derived") + except Ice.OperationNotExistException: + pass except: test(False) @@ -522,6 +526,8 @@ def allTests(communicator): test(ex.b == "base") test(ex.kp == "preserved") test(ex.kpd == "derived") + except Ice.OperationNotExistException: + pass except: test(False) @@ -546,6 +552,8 @@ def allTests(communicator): test(ex.b == "base") test(ex.kp == "preserved") test(ex.kpd == "derived") + except Ice.OperationNotExistException: + pass except: test(False) @@ -570,6 +578,8 @@ def allTests(communicator): test(ex.b == "base") test(ex.kp == "preserved") test(ex.kpd == "derived") + except Ice.OperationNotExistException: + pass except: test(False) |