diff options
Diffstat (limited to 'cpp/test')
-rw-r--r-- | cpp/test/Ice/gc/Client.cpp | 6 | ||||
-rwxr-xr-x | cpp/test/Ice/gc/run.py | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/cpp/test/Ice/gc/Client.cpp b/cpp/test/Ice/gc/Client.cpp index cd25c8a4024..0936f6b2b50 100644 --- a/cpp/test/Ice/gc/Client.cpp +++ b/cpp/test/Ice/gc/Client.cpp @@ -250,9 +250,15 @@ class MyApplication : public Ice::Application { public: + MyApplication(); virtual int run(int, char* []); }; +MyApplication::MyApplication() + : Ice::Application(Ice::NoSignalHandling) +{ +} + int MyApplication::run(int argc, char* argv[]) { diff --git a/cpp/test/Ice/gc/run.py b/cpp/test/Ice/gc/run.py index ced3120bc64..2fbebfbbb8a 100755 --- a/cpp/test/Ice/gc/run.py +++ b/cpp/test/Ice/gc/run.py @@ -26,7 +26,4 @@ seedfile = os.path.join(os.getcwd(), "seed") TestUtil.simpleTest(client, seedfile) -clientProc = TestUtil.startClient(client, seedfile) -clientProc.waitTestSuccess() - os.remove(seedfile) |