diff options
author | Michi Henning <michi@zeroc.com> | 2009-03-13 16:07:04 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-03-13 16:07:04 +1000 |
commit | 054082f0050d45311de51a19c6c11120fdcd3ac4 (patch) | |
tree | c2ffb9467b2bf37f12f87b22b824ab88c4ef652b /cpp | |
parent | Bug 3703: mention new Java demo/Database/library somewhere (diff) | |
download | ice-054082f0050d45311de51a19c6c11120fdcd3ac4.tar.bz2 ice-054082f0050d45311de51a19c6c11120fdcd3ac4.tar.xz ice-054082f0050d45311de51a19c6c11120fdcd3ac4.zip |
Bug 3847: test/Ice/gc failure
Diffstat (limited to 'cpp')
-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) |