diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-08-19 13:09:00 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-08-19 13:09:00 (GMT) |
commit | 20c82fb4323c29082c2c59c5d35b942581ea02d8 (patch) | |
tree | fe0af4ba405647ee2eab9642f88fe23c2912ff01 | |
parent | 5bca43cca3ac90429e3f9263d0d7ea8c9eb164d4 (diff) | |
download | Qt-20c82fb4323c29082c2c59c5d35b942581ea02d8.zip Qt-20c82fb4323c29082c2c59c5d35b942581ea02d8.tar.gz Qt-20c82fb4323c29082c2c59c5d35b942581ea02d8.tar.bz2 |
update expected output to match that of JSC-based qtscript back-end
Output of backtrace has changed slightly (e.g. "at" instead of "@").
-rw-r--r-- | tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp b/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp index 356e683..70a198d 100644 --- a/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp +++ b/tests/auto/qscriptenginedebugger/tst_qscriptenginedebugger.cpp @@ -479,7 +479,7 @@ void tst_QScriptEngineDebugger::consoleCommands() outputEdit->clear(); executeConsoleCommand(inputEdit, outputEdit, ".backtrace"); - QCOMPARE(outputEdit->toPlainText(), QString::fromLatin1("qsdb> .backtrace\n#0 <global>()@:-1")); + QCOMPARE(outputEdit->toPlainText(), QString::fromLatin1("qsdb> .backtrace\n#0 <global>() at -1")); outputEdit->clear(); executeConsoleCommand(inputEdit, outputEdit, ".down"); @@ -491,7 +491,7 @@ void tst_QScriptEngineDebugger::consoleCommands() outputEdit->clear(); executeConsoleCommand(inputEdit, outputEdit, ".frame"); - QCOMPARE(outputEdit->toPlainText(), QString::fromLatin1("qsdb> .frame\n#0 <global>()@:-1")); + QCOMPARE(outputEdit->toPlainText(), QString::fromLatin1("qsdb> .frame\n#0 <global>() at -1")); outputEdit->clear(); executeConsoleCommand(inputEdit, outputEdit, ".break foo.qs:789"); |