summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptengine/tst_qscriptengine.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-08-04 13:14:08 +0200
committerOlivier Goffart <ogoffart@trolltech.com>2009-08-04 15:35:05 +0200
commit109b4d19e2c677c3eafaf6b4a9df605cb3aeb481 (patch)
treee3d31d7417058b23eeaecd2e8e3b5533264415cd /tests/auto/qscriptengine/tst_qscriptengine.cpp
parente2852e547216562751a5d05ebdfbd001113cc9b6 (diff)
Do not crash if using popContext() while the current context have not been pushed
Reviewed-by: Kent Hansen
Diffstat (limited to 'tests/auto/qscriptengine/tst_qscriptengine.cpp')
-rw-r--r--tests/auto/qscriptengine/tst_qscriptengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp
index 0b1698024d..f7bac56ce3 100644
--- a/tests/auto/qscriptengine/tst_qscriptengine.cpp
+++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp
@@ -193,9 +193,9 @@ void tst_QScriptEngine::pushPopContext()
eng.popContext();
eng.popContext();
- QEXPECT_FAIL("", "cannot pop more context than it pushes", Abort);
- QVERIFY(false);
+ QTest::ignoreMessage(QtWarningMsg, "QScriptEngine::popContext() doesn't match with pushContext()");
eng.popContext(); // ignored
+ QTest::ignoreMessage(QtWarningMsg, "QScriptEngine::popContext() doesn't match with pushContext()");
eng.popContext(); // ignored
}