diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-05-01 06:35:20 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-05-01 06:35:20 +0000 |
commit | 1beed4be7d6576b14dc685e3cb4e2a26fc17e50b (patch) | |
tree | 906ea9ad9ae3c8194246a2f44678684c6df74230 /cpp/test/Ice/operations/BatchOneways.cpp | |
parent | remove timeout test from proxy test. Cleanup of operations test. (diff) | |
download | ice-1beed4be7d6576b14dc685e3cb4e2a26fc17e50b.tar.bz2 ice-1beed4be7d6576b14dc685e3cb4e2a26fc17e50b.tar.xz ice-1beed4be7d6576b14dc685e3cb4e2a26fc17e50b.zip |
remove timeout test from proxy test. Cleanup of operations test.
Diffstat (limited to 'cpp/test/Ice/operations/BatchOneways.cpp')
-rw-r--r-- | cpp/test/Ice/operations/BatchOneways.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/test/Ice/operations/BatchOneways.cpp b/cpp/test/Ice/operations/BatchOneways.cpp index d0394e5cd51..f5242c3dee4 100644 --- a/cpp/test/Ice/operations/BatchOneways.cpp +++ b/cpp/test/Ice/operations/BatchOneways.cpp @@ -23,7 +23,6 @@ batchOneways(const Test::MyClassPrx& p) try { p->opByteSOneway(bs1); - test(true); } catch(const Ice::MemoryLimitException&) { @@ -33,7 +32,6 @@ batchOneways(const Test::MyClassPrx& p) try { p->opByteSOneway(bs2); - test(true); } catch(const Ice::MemoryLimitException&) { @@ -47,7 +45,6 @@ batchOneways(const Test::MyClassPrx& p) } catch(const Ice::MemoryLimitException&) { - test(true); } Test::MyClassPrx batch = Test::MyClassPrx::uncheckedCast(p->ice_batchOneway()); @@ -59,7 +56,6 @@ batchOneways(const Test::MyClassPrx& p) try { batch->opByteSOneway(bs1); - test(true); } catch(const Ice::MemoryLimitException&) { |