summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/stream/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/stream/Client.cpp')
-rw-r--r--cpp/test/Ice/stream/Client.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/stream/Client.cpp b/cpp/test/Ice/stream/Client.cpp
index a0d9ccb3dc4..6d581bc6c6b 100644
--- a/cpp/test/Ice/stream/Client.cpp
+++ b/cpp/test/Ice/stream/Client.cpp
@@ -183,6 +183,12 @@ run(int, char**, const Ice::CommunicatorPtr& communicator)
in->read(v);
test(v);
in->endEncapsulation();
+
+ in = Ice::createInputStream(communicator, data, false);
+ in->startEncapsulation();
+ in->read(v);
+ test(v);
+ in->endEncapsulation();
}
{