aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Tomkins <toby.tomkins@nokia.com>2011-10-12 11:37:14 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-12 06:19:08 +0200
commit22e679ece15b1e8d6232c002867d16637f1f1fa1 (patch)
treee6e7c560c6a5e2d23c1e79238bb811cb8983c608
parentb3f9f53ff12d7fd5fc5b667c6a58169d5de06939 (diff)
Modify existing behavior to explicitly test functionality.
Task-number: QTBUG-21001 Change-Id: I63d0d56cc05328350804ad03cbc9a943a84d03c3 Reviewed-on: http://codereview.qt-project.org/6377 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
-rw-r--r--tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro2
-rw-r--r--tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro b/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro
index 7a2fdd4231..454b86ca53 100644
--- a/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro
+++ b/tests/auto/declarative/qdeclarativebehaviors/qdeclarativebehaviors.pro
@@ -5,6 +5,6 @@ macx:CONFIG -= app_bundle
DEFINES += SRCDIR=\\\"$$PWD\\\"
-CONFIG += parallel_test insignificant_test
+CONFIG += parallel_test
QT += core-private gui-private v8-private declarative-private opengl-private testlib
diff --git a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp
index 13145297de..693ccccec9 100644
--- a/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp
+++ b/tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp
@@ -122,6 +122,7 @@ void tst_qdeclarativebehaviors::cppTriggered()
innerRect->setProperty("x", 200);
QTRY_VERIFY(innerRect->x() > 0);
+ QEXPECT_FAIL("", "QTBUG-21001", Continue);
QTRY_VERIFY(innerRect->x() < 200); //i.e. the behavior has been triggered
delete rect;