summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/objects/AllTests.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
committerBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
commitabada90e3f84dc703b8ddc9efcbed8a946fadead (patch)
tree2c6f9dccd510ea97cb927a7bd635422efaae547a /cpp/test/Ice/objects/AllTests.cpp
parentremoving trace message (diff)
downloadice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.bz2
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.xz
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.zip
Expanded tabs into spaces
Diffstat (limited to 'cpp/test/Ice/objects/AllTests.cpp')
-rw-r--r--cpp/test/Ice/objects/AllTests.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/cpp/test/Ice/objects/AllTests.cpp b/cpp/test/Ice/objects/AllTests.cpp
index 7144ee7e861..91161ac04c2 100644
--- a/cpp/test/Ice/objects/AllTests.cpp
+++ b/cpp/test/Ice/objects/AllTests.cpp
@@ -140,32 +140,32 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated)
if(!collocated)
{
- cout << "testing UnexpectedObjectException... " << flush;
- ref = "uoet:default -p 12010 -t 10000";
- base = communicator->stringToProxy(ref);
- test(base);
- UnexpectedObjectExceptionTestPrx uoet = UnexpectedObjectExceptionTestPrx::uncheckedCast(base);
- test(uoet);
- try
- {
- uoet->op();
- test(false);
- }
- catch(const Ice::UnexpectedObjectException& ex)
- {
- test(ex.type == "::Test::AlsoEmpty");
- test(ex.expectedType == "::Test::Empty");
- }
- catch(const Ice::Exception& ex)
- {
- cout << ex << endl;
- test(false);
- }
- catch(...)
- {
- test(false);
- }
- cout << "ok" << endl;
+ cout << "testing UnexpectedObjectException... " << flush;
+ ref = "uoet:default -p 12010 -t 10000";
+ base = communicator->stringToProxy(ref);
+ test(base);
+ UnexpectedObjectExceptionTestPrx uoet = UnexpectedObjectExceptionTestPrx::uncheckedCast(base);
+ test(uoet);
+ try
+ {
+ uoet->op();
+ test(false);
+ }
+ catch(const Ice::UnexpectedObjectException& ex)
+ {
+ test(ex.type == "::Test::AlsoEmpty");
+ test(ex.expectedType == "::Test::Empty");
+ }
+ catch(const Ice::Exception& ex)
+ {
+ cout << ex << endl;
+ test(false);
+ }
+ catch(...)
+ {
+ test(false);
+ }
+ cout << "ok" << endl;
}
return initial;