diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-01-11 07:18:12 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-01-11 07:18:12 (GMT) |
commit | 468027128f8019f8e49293ce561736e73e8785a0 (patch) | |
tree | 59cb8f8946355ac44d7113ae7415f61beccf1c19 | |
parent | 7ffa961eb6a4861da6fa5bde19f5ae7daef05063 (diff) | |
download | Qt-468027128f8019f8e49293ce561736e73e8785a0.zip Qt-468027128f8019f8e49293ce561736e73e8785a0.tar.gz Qt-468027128f8019f8e49293ce561736e73e8785a0.tar.bz2 |
Ignore anchor loop duplicate error.
-rw-r--r-- | tests/auto/declarative/anchors/tst_anchors.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/declarative/anchors/tst_anchors.cpp b/tests/auto/declarative/anchors/tst_anchors.cpp index 90a90fe..4a51861 100644 --- a/tests/auto/declarative/anchors/tst_anchors.cpp +++ b/tests/auto/declarative/anchors/tst_anchors.cpp @@ -375,6 +375,7 @@ void tst_anchors::crash1() QString expect = "QML Text (" + view->url().toString() + ":4:5" + ") Possible anchor loop detected on fill."; QTest::ignoreMessage(QtWarningMsg, expect.toLatin1()); + QTest::ignoreMessage(QtWarningMsg, expect.toLatin1()); // XXX ideally, should be one message view->execute(); qApp->processEvents(); |