aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtCore/thread_signals_test.py
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-06-10 15:33:06 -0300
committerRenato Filho <renato.filho@openbossa.org>2010-06-14 15:15:21 -0300
commit4284ae6cc69f6281140d960cfd6d62a94066bf36 (patch)
tree91ccaaa251f6f9975d4a41ad1bda24b18aa5a0e9 /tests/QtCore/thread_signals_test.py
parent89167fa56ebef6e8d596495ad912196f274587da (diff)
Fixed thread test to avoid memory leaks.
Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
Diffstat (limited to 'tests/QtCore/thread_signals_test.py')
-rw-r--r--tests/QtCore/thread_signals_test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/QtCore/thread_signals_test.py b/tests/QtCore/thread_signals_test.py
index 9eea82907..1d2f75062 100644
--- a/tests/QtCore/thread_signals_test.py
+++ b/tests/QtCore/thread_signals_test.py
@@ -27,6 +27,7 @@ class TestThreadSignal(UsesQCoreApplication):
t.start()
self.app.exec_()
+ t.wait()
self.assert_(self.__called__);
if __name__ == '__main__':