summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/qt/benchmarks/qscriptengine
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/qt/benchmarks/qscriptengine')
-rw-r--r--JavaScriptCore/qt/benchmarks/qscriptengine/qscriptengine.pro13
-rw-r--r--JavaScriptCore/qt/benchmarks/qscriptengine/tst_qscriptengine.cpp142
2 files changed, 0 insertions, 155 deletions
diff --git a/JavaScriptCore/qt/benchmarks/qscriptengine/qscriptengine.pro b/JavaScriptCore/qt/benchmarks/qscriptengine/qscriptengine.pro
deleted file mode 100644
index e94137d..0000000
--- a/JavaScriptCore/qt/benchmarks/qscriptengine/qscriptengine.pro
+++ /dev/null
@@ -1,13 +0,0 @@
-TEMPLATE = app
-TARGET = tst_bench_qscriptengine
-
-SOURCES += tst_qscriptengine.cpp
-
-QT += testlib
-
-include(../benchmarks.pri)
-
-symbian* {
- TARGET.EPOCHEAPSIZE = 0x20000 0x2000000 // Min 128kB, Max 32MB
- TARGET.EPOCSTACKSIZE = 0x14000
-}
diff --git a/JavaScriptCore/qt/benchmarks/qscriptengine/tst_qscriptengine.cpp b/JavaScriptCore/qt/benchmarks/qscriptengine/tst_qscriptengine.cpp
deleted file mode 100644
index 0c447c6..0000000
--- a/JavaScriptCore/qt/benchmarks/qscriptengine/tst_qscriptengine.cpp
+++ /dev/null
@@ -1,142 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "qscriptengine.h"
-#include "qscriptvalue.h"
-#include <qtest.h>
-
-class tst_QScriptEngine : public QObject {
- Q_OBJECT
-
-private slots:
- void checkSyntax_data();
- void checkSyntax();
- void constructor();
- void evaluateString_data();
- void evaluateString();
- void evaluateProgram_data();
- void evaluateProgram();
- void newObject();
- void nullValue();
- void undefinedValue();
- void globalObject();
- void toStringHandle();
-};
-
-void tst_QScriptEngine::checkSyntax_data()
-{
- evaluateString_data();
-}
-
-void tst_QScriptEngine::checkSyntax()
-{
- QFETCH(QString, code);
- QScriptEngine engine;
- QBENCHMARK {
- engine.checkSyntax(code);
- }
-}
-
-void tst_QScriptEngine::constructor()
-{
- QBENCHMARK {
- QScriptEngine engine;
- }
-}
-
-void tst_QScriptEngine::evaluateString_data()
-{
- QTest::addColumn<QString>("code");
- QTest::newRow("empty script") << QString::fromLatin1("");
- QTest::newRow("number literal") << QString::fromLatin1("123");
- QTest::newRow("string literal") << QString::fromLatin1("'ciao'");
- QTest::newRow("regexp literal") << QString::fromLatin1("/foo/gim");
- QTest::newRow("null literal") << QString::fromLatin1("null");
- QTest::newRow("undefined literal") << QString::fromLatin1("undefined");
- QTest::newRow("empty object literal") << QString::fromLatin1("{}");
- QTest::newRow("this") << QString::fromLatin1("this");
-}
-
-void tst_QScriptEngine::evaluateString()
-{
- QFETCH(QString, code);
- QScriptEngine engine;
- QBENCHMARK {
- engine.evaluate(code);
- }
-}
-
-void tst_QScriptEngine::evaluateProgram_data()
-{
- evaluateString_data();
-}
-
-void tst_QScriptEngine::evaluateProgram()
-{
- QFETCH(QString, code);
- QScriptEngine engine;
- QScriptProgram program(code);
- QBENCHMARK {
- engine.evaluate(program);
- }
-}
-
-void tst_QScriptEngine::newObject()
-{
- QScriptEngine engine;
- QBENCHMARK {
- engine.newObject();
- }
-}
-
-void tst_QScriptEngine::nullValue()
-{
- QScriptEngine engine;
- QBENCHMARK {
- engine.nullValue();
- }
-}
-
-void tst_QScriptEngine::undefinedValue()
-{
- QScriptEngine engine;
- QBENCHMARK {
- engine.undefinedValue();
- }
-}
-
-void tst_QScriptEngine::globalObject()
-{
- QScriptEngine engine;
- QBENCHMARK {
- engine.globalObject();
- }
-}
-
-void tst_QScriptEngine::toStringHandle()
-{
- QScriptEngine engine;
- QString str = QString::fromLatin1("foobarbaz");
- QBENCHMARK {
- engine.toStringHandle(str);
- }
-}
-
-QTEST_MAIN(tst_QScriptEngine)
-#include "tst_qscriptengine.moc"