summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-07-23 14:21:30 (GMT)
committerOlivier Goffart <ogoffart@trolltech.com>2009-07-23 14:21:30 (GMT)
commit2ce65133026e1f291f7b6b312d832acb0a4045ae (patch)
tree39cc0fce5f89ac03daf7f10659cf2748d0c4dedc /tests/auto
parent268dfef13889b9a74e8bad3288791b62d20d0ff7 (diff)
downloadQt-2ce65133026e1f291f7b6b312d832acb0a4045ae.zip
Qt-2ce65133026e1f291f7b6b312d832acb0a4045ae.tar.gz
Qt-2ce65133026e1f291f7b6b312d832acb0a4045ae.tar.bz2
Implement QScriptString as a wraper around the JSC::Identifier
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qscriptengine/tst_qscriptengine.cpp1
-rw-r--r--tests/auto/qscriptstring/tst_qscriptstring.cpp2
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/auto/qscriptengine/tst_qscriptengine.cpp b/tests/auto/qscriptengine/tst_qscriptengine.cpp
index 618dc04..ce38575 100644
--- a/tests/auto/qscriptengine/tst_qscriptengine.cpp
+++ b/tests/auto/qscriptengine/tst_qscriptengine.cpp
@@ -3592,7 +3592,6 @@ void tst_QScriptEngine::reentrancy()
QScriptEngine eng2;
QScriptString s1 = eng1.toStringHandle("foo");
QScriptString s2 = eng2.toStringHandle("foo");
- QEXPECT_FAIL("", "String handles aren't properly implemented yet", Continue);
QVERIFY(s1 != s2);
}
{
diff --git a/tests/auto/qscriptstring/tst_qscriptstring.cpp b/tests/auto/qscriptstring/tst_qscriptstring.cpp
index 90d40ae..f89d4ab 100644
--- a/tests/auto/qscriptstring/tst_qscriptstring.cpp
+++ b/tests/auto/qscriptstring/tst_qscriptstring.cpp
@@ -129,9 +129,7 @@ void tst_QScriptString::test()
delete eng2;
- QEXPECT_FAIL("", "String handles aren't properly implemented yet", Continue);
QVERIFY(!oneInterned.isValid());
- QEXPECT_FAIL("", "String handles aren't properly implemented yet", Continue);
QVERIFY(!twoInterned.isValid());
}
}