summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJedrzej Nowacki <jedrzej.nowacki@nokia.com>2009-08-21 09:13:47 (GMT)
committerJedrzej Nowacki <jedrzej.nowacki@nokia.com>2009-08-21 09:39:21 (GMT)
commita02c095c9f80c487d4f3a8cb1f529579bcd4d255 (patch)
treec49af2acb35b0912256bcbccbefa5ce3eb73484f
parenteaa0ad5325c8f3af5f1de8ccd6a81d9599e07e51 (diff)
downloadQt-a02c095c9f80c487d4f3a8cb1f529579bcd4d255.zip
Qt-a02c095c9f80c487d4f3a8cb1f529579bcd4d255.tar.gz
Qt-a02c095c9f80c487d4f3a8cb1f529579bcd4d255.tar.bz2
Autotest QEXPECTED_FAIL removed
Reviewed-by: Kent Hansen
-rw-r--r--tests/auto/qscriptengineagent/tst_qscriptengineagent.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/auto/qscriptengineagent/tst_qscriptengineagent.cpp b/tests/auto/qscriptengineagent/tst_qscriptengineagent.cpp
index 932803a..886c70b 100644
--- a/tests/auto/qscriptengineagent/tst_qscriptengineagent.cpp
+++ b/tests/auto/qscriptengineagent/tst_qscriptengineagent.cpp
@@ -1844,7 +1844,6 @@ void tst_QScriptEngineAgent::eventOrder_functions()
QCOMPARE(spy->at(37).type, ScriptEngineEvent::ContextPop);
// exception
QCOMPARE(spy->at(38).type, ScriptEngineEvent::ExceptionThrow);
- QEXPECT_FAIL("","New backend propably gives bad script id for exceptions", Abort);
QCOMPARE(spy->at(38).scriptId, spy->at(21).scriptId);
QVERIFY(!spy->at(38).hasExceptionHandler);
// bar() exit
@@ -1921,7 +1920,6 @@ void tst_QScriptEngineAgent::eventOrder_signalsHandling()
emit testSignal(123);
- QEXPECT_FAIL("","Signals events problem", Abort);
QCOMPARE(spy->count(), 14);
// new context
QCOMPARE(spy->at(4).type, ScriptEngineEvent::ContextPush);
@@ -2048,7 +2046,7 @@ void tst_QScriptEngineAgent::syntaxError()
spy->clear();
eng.evaluate("{");
- //QCOMPARE(spy->count(), 9);
+ QCOMPARE(spy->count(), 9);
QCOMPARE(spy->at(i).type, ScriptEngineEvent::ScriptLoad);
QVERIFY(spy->at(i).scriptId != -1);