diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-09-13 17:44:17 -0300 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2011-09-13 20:24:08 -0300 |
commit | 60f657f0174e8e95e1d30a605dd87d70d64f73cd (patch) | |
tree | 23f850e71fc2f1be67d367b2bb9769b791d18bc9 /tests/QtDeclarative/bug_995.py | |
parent | de31fbd3fe3bca3bbb3f794c2932ad60ae941e5f (diff) | |
download | pyside-60f657f0174e8e95e1d30a605dd87d70d64f73cd.tar.gz pyside-60f657f0174e8e95e1d30a605dd87d70d64f73cd.tar.xz pyside-60f657f0174e8e95e1d30a605dd87d70d64f73cd.zip |
Unit test for bug 995 - "QDeclarativeView.itemAt returns faulty reference. (leading to SEGFAULT)"
Diffstat (limited to 'tests/QtDeclarative/bug_995.py')
-rw-r--r-- | tests/QtDeclarative/bug_995.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/QtDeclarative/bug_995.py b/tests/QtDeclarative/bug_995.py new file mode 100644 index 0000000..acdf148 --- /dev/null +++ b/tests/QtDeclarative/bug_995.py @@ -0,0 +1,13 @@ +from PySide.QtGui import * +from PySide.QtDeclarative import * +from helper import adjust_filename, UsesQApplication + +app = QApplication([]) +view = QDeclarativeView(adjust_filename('bug_995.qml', __file__)) +view.show() +view.resize(200, 200) +item = view.itemAt(100, 100) + +# it CAN NOT crash here +print item + |