diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-06-03 19:32:20 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-06-03 19:32:20 -0700 |
commit | 3d649bed4328992f41f567136025f58a019a5159 (patch) | |
tree | 470be901fbbfe5c6cd4269884412b0d36b48dc92 /cppe/test/IceE/thread/Client.cpp | |
parent | local interface fixes for slice2javae (diff) | |
download | ice-3d649bed4328992f41f567136025f58a019a5159.tar.bz2 ice-3d649bed4328992f41f567136025f58a019a5159.tar.xz ice-3d649bed4328992f41f567136025f58a019a5159.zip |
Various Ice-E fixes:
- Bug fix in slice2javae for local interfaces/classes
- Added Ice.LocalObjectHolder
- Reviewed Java/C++ demos and aligned with Ice
- Source code clean up (removed tabs, etc.)
Diffstat (limited to 'cppe/test/IceE/thread/Client.cpp')
-rw-r--r-- | cppe/test/IceE/thread/Client.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/cppe/test/IceE/thread/Client.cpp b/cppe/test/IceE/thread/Client.cpp index 7c38af8b853..a0a25c350bc 100644 --- a/cppe/test/IceE/thread/Client.cpp +++ b/cppe/test/IceE/thread/Client.cpp @@ -27,21 +27,21 @@ public: virtual int run(int argc, char* argv[]) { - try - { - initializeTestSuite(); + try + { + initializeTestSuite(); - for(list<TestBasePtr>::const_iterator p = allTests.begin(); p != allTests.end(); ++p) - { - (*p)->start(); - } - } - catch(const TestFailed& e) - { - tprintf("test %s failed\n", e.name.c_str()); - return EXIT_FAILURE; - } - return EXIT_SUCCESS; + for(list<TestBasePtr>::const_iterator p = allTests.begin(); p != allTests.end(); ++p) + { + (*p)->start(); + } + } + catch(const TestFailed& e) + { + tprintf("test %s failed\n", e.name.c_str()); + return EXIT_FAILURE; + } + return EXIT_SUCCESS; } }; |