diff -r fcece45ef507 -r 79de32ba3296 tests/benchmarks/script/qscriptengine/tst_qscriptengine.cpp --- a/tests/benchmarks/script/qscriptengine/tst_qscriptengine.cpp Mon May 03 13:17:34 2010 +0300 +++ b/tests/benchmarks/script/qscriptengine/tst_qscriptengine.cpp Fri May 14 16:40:13 2010 +0300 @@ -269,19 +269,22 @@ void tst_QScriptEngine::translation_data() { QTest::addColumn("text"); - QTest::newRow("no translation") << "\"hello world\""; - QTest::newRow("qsTr") << "qsTr(\"hello world\")"; - QTest::newRow("qsTranslate") << "qsTranslate(\"\", \"hello world\")"; + QTest::addColumn("fileName"); + QTest::newRow("no translation") << "\"hello world\"" << ""; + QTest::newRow("qsTr") << "qsTr(\"hello world\")" << ""; + QTest::newRow("qsTranslate") << "qsTranslate(\"\", \"hello world\")" << ""; + QTest::newRow("qsTr:script.js") << "qsTr(\"hello world\")" << "script.js"; } void tst_QScriptEngine::translation() { QFETCH(QString, text); + QFETCH(QString, fileName); QScriptEngine engine; engine.installTranslatorFunctions(); QBENCHMARK { - (void)engine.evaluate(text); + (void)engine.evaluate(text, fileName); } }