aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtDeclarative/bug_557.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/QtDeclarative/bug_557.py')
-rw-r--r--tests/QtDeclarative/bug_557.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/QtDeclarative/bug_557.py b/tests/QtDeclarative/bug_557.py
new file mode 100644
index 000000000..c78aaf15d
--- /dev/null
+++ b/tests/QtDeclarative/bug_557.py
@@ -0,0 +1,14 @@
+from PySide.QtCore import *
+from PySide.QtGui import *
+from PySide.QtDeclarative import *
+
+import sys
+
+app = QApplication(sys.argv)
+
+engine = QDeclarativeEngine()
+component = QDeclarativeComponent(engine)
+
+# This should segfault if the QDeclarativeComponent has not QDeclarativeEngine
+component.loadUrl(QUrl.fromLocalFile('foo.qml'))
+