aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-09-25 21:40:54 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-26 09:05:45 +0200
commit6d425ebab34030ff12572f9588eac589930f2659 (patch)
tree2aeeb3a082d6b2a0dd338296b97d5e6b2b523735 /tests
parent0c22fb091eeb591c49ebe65532609e65eafb59d1 (diff)
Skip two tests that don't work reliably with a conservative GC
Change-Id: I5619d533b6e48c88fda063bc7cdcc62d6838bcdf Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
index 625971fc05..42d2719d00 100644
--- a/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
+++ b/tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp
@@ -4976,6 +4976,8 @@ void tst_qqmlecmascript::propertyVarCircular2()
void tst_qqmlecmascript::propertyVarInheritance()
{
+ QSKIP("This test does not work reliably with our conservative GC.");
+
// enforce behaviour regarding element inheritance - ensure handle disposal.
// The particular component under test here has a chain of references.
QQmlComponent component(&engine, testFileUrl("propertyVar.inherit.qml"));
@@ -5026,6 +5028,8 @@ void tst_qqmlecmascript::propertyVarInheritance()
void tst_qqmlecmascript::propertyVarInheritance2()
{
+ QSKIP("This test does not work reliably with our conservative GC.");
+
// The particular component under test here does NOT have a chain of references; the
// only link between rootObject and childObject is that rootObject is the parent of childObject.
QQmlComponent component(&engine, testFileUrl("propertyVar.circular.2.qml"));