summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/slicing/exceptions/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/TestI.cpp')
-rw-r--r--cpp/test/Ice/slicing/exceptions/TestI.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/TestI.cpp b/cpp/test/Ice/slicing/exceptions/TestI.cpp
index 827908ab9e7..7a982738d21 100644
--- a/cpp/test/Ice/slicing/exceptions/TestI.cpp
+++ b/cpp/test/Ice/slicing/exceptions/TestI.cpp
@@ -9,6 +9,7 @@
#include <TestI.h>
#include <Ice/Ice.h>
+#include <TestCommon.h>
using namespace Test;
@@ -153,24 +154,28 @@ void
TestI::relayKnownPreservedAsBase(const RelayPrx& r, const ::Ice::Current&)
{
r->knownPreservedAsBase();
+ test(false);
}
void
TestI::relayKnownPreservedAsKnownPreserved(const RelayPrx& r, const ::Ice::Current&)
{
r->knownPreservedAsKnownPreserved();
+ test(false);
}
void
TestI::relayUnknownPreservedAsBase(const RelayPrx& r, const ::Ice::Current&)
{
r->unknownPreservedAsBase();
+ test(false);
}
void
TestI::relayUnknownPreservedAsKnownPreserved(const RelayPrx& r, const ::Ice::Current&)
{
r->unknownPreservedAsKnownPreserved();
+ test(false);
}
void