summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/thread/AliveTest.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2006-03-02 08:48:09 +0000
committerMatthew Newhook <matthew@zeroc.com>2006-03-02 08:48:09 +0000
commit7da502a811dab261a851fca83545e64ceb985721 (patch)
tree06ca0aef3feeb3cfdc744acc2dd590b479d1237d /cppe/test/IceE/thread/AliveTest.cpp
parentrequires STLport 5.0.2 (diff)
downloadice-7da502a811dab261a851fca83545e64ceb985721.tar.bz2
ice-7da502a811dab261a851fca83545e64ceb985721.tar.xz
ice-7da502a811dab261a851fca83545e64ceb985721.zip
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=824
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=725 http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=724
Diffstat (limited to 'cppe/test/IceE/thread/AliveTest.cpp')
-rw-r--r--cppe/test/IceE/thread/AliveTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/test/IceE/thread/AliveTest.cpp b/cppe/test/IceE/thread/AliveTest.cpp
index 4a7773b3847..0815c5fba04 100644
--- a/cppe/test/IceE/thread/AliveTest.cpp
+++ b/cppe/test/IceE/thread/AliveTest.cpp
@@ -92,8 +92,8 @@ AliveTest::run()
AliveTestThreadPtr t = new AliveTestThread(childCreated, parentReady);
IceUtil::ThreadControl c = t->start();
childCreated.waitForSignal();
- test(c.isAlive());
+ test(t->isAlive());
parentReady.signal();
c.join();
- test(!c.isAlive());
+ test(!t->isAlive());
}