diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-08-10 10:12:33 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-08-10 10:12:33 (GMT) |
commit | 34511e1001471ed4041794640aefe508f50ad01c (patch) | |
tree | 1064dd607bcf221bc65575b7588e8f52ab41934c /tests/auto/qscriptcontext | |
parent | 94cf9e210e155be9cb93ac321b2f68725b47e58d (diff) | |
download | Qt-34511e1001471ed4041794640aefe508f50ad01c.zip Qt-34511e1001471ed4041794640aefe508f50ad01c.tar.gz Qt-34511e1001471ed4041794640aefe508f50ad01c.tar.bz2 |
implement QScriptContext::backtrace()
Doesn't pass the test yet, but at least it returns something that
might be useful on occasion.
Diffstat (limited to 'tests/auto/qscriptcontext')
-rw-r--r-- | tests/auto/qscriptcontext/tst_qscriptcontext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp index 48403aa..eed0cb1 100644 --- a/tests/auto/qscriptcontext/tst_qscriptcontext.cpp +++ b/tests/auto/qscriptcontext/tst_qscriptcontext.cpp @@ -561,7 +561,7 @@ void tst_QScriptContext::backtrace() QVERIFY(ret.isArray()); QStringList slist = qscriptvalue_cast<QStringList>(ret); - QEXPECT_FAIL("", "", Continue); + QEXPECT_FAIL("", "Backtrace is not correct", Continue); QCOMPARE(slist, expected); } |