Created support to function qAddPostRoutine.

Created unit test for bug #515
Fixes bug #515

Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
          Lauro Moura <lauro.neto@openbossa.org>
This commit is contained in:
Renato Araujo Oliveira Filho 2011-01-03 19:54:40 -03:00
commit 374e2fcf88
3 changed files with 50 additions and 0 deletions

View file

@ -4,6 +4,7 @@ PYSIDE_TEST(bug_408.py)
PYSIDE_TEST(bug_428.py)
PYSIDE_TEST(bug_462.py)
PYSIDE_TEST(bug_505.py)
PYSIDE_TEST(bug_515.py)
PYSIDE_TEST(blocking_signals_test.py)
PYSIDE_TEST(child_event_test.py)
PYSIDE_TEST(deepcopy_test.py)

18
tests/QtCore/bug_515.py Normal file
View file

@ -0,0 +1,18 @@
""" Unittest for bug #515 """
""" http://bugs.openbossa.org/show_bug.cgi?id=515 """
from PySide import QtCore
callCleanup = False
def _cleanup():
global callCleanup
callCleanup = True
def _checkCleanup():
global callCleanup
assert(callCleanup)
app = QtCore.QCoreApplication([])
QtCore.qAddPostRoutine(_cleanup)
QtCore.qAddPostRoutine(_checkCleanup)
del app