# Test the frozen module defined in frozen.c. from test_support import TestFailed import sys, os try: import __hello__ except ImportError, x: raise TestFailed, "import __hello__ failed:", x try: import __phello__ except ImportError, x: raise TestFailed, "import __phello__ failed:", x try: import __phello__.spam except ImportError, x: raise TestFailed, "import __phello__.spam failed:", x try: import __phello__.foo except ImportError: pass else: raise TestFailed, "import __phello__.foo should have failed" 'http://service.techsat.com/oss-git/Qt.git/atom/src?h=v4.7.1' type='application/atom+xml'/>
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-09-30 14:35:12 (GMT)
committerOlivier Goffart <ogoffart@trolltech.com>2009-09-30 14:37:25 (GMT)
commit76b8df83645c66c15d58bf12d7ffa3ea944ecb07 (patch)
tree8f22441959030fad8d1bb13dbc7a3b0bad476f6c /src
parent28c61efdd823cb5fa93f4ab2ef3109bb01c56ed5 (diff)
downloadQt-76b8df83645c66c15d58bf12d7ffa3ea944ecb07.zip
Qt-76b8df83645c66c15d58bf12d7ffa3ea944ecb07.tar.gz
Qt-76b8df83645c66c15d58bf12d7ffa3ea944ecb07.tar.bz2
Make sure to process the events in QTest::qWaitForWindowShown on X11
qt_x11_wait_for_window_manager doesn't necesserly process the events Reviewed-by: Denis