diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tests/benchmarks/qvariant | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tests/benchmarks/qvariant')
-rw-r--r-- | tests/benchmarks/qvariant/qvariant.pro | 12 | ||||
-rw-r--r-- | tests/benchmarks/qvariant/tst_qvariant.cpp | 195 |
2 files changed, 207 insertions, 0 deletions
diff --git a/tests/benchmarks/qvariant/qvariant.pro b/tests/benchmarks/qvariant/qvariant.pro new file mode 100644 index 0000000..68b4a97 --- /dev/null +++ b/tests/benchmarks/qvariant/qvariant.pro @@ -0,0 +1,12 @@ +load(qttest_p4) +TEMPLATE = app +TARGET = tst_qvariant +DEPENDPATH += . +INCLUDEPATH += . +QT -= gui + +CONFIG += release +#CONFIG += debug + + +SOURCES += tst_qvariant.cpp diff --git a/tests/benchmarks/qvariant/tst_qvariant.cpp b/tests/benchmarks/qvariant/tst_qvariant.cpp new file mode 100644 index 0000000..4a7ad02 --- /dev/null +++ b/tests/benchmarks/qvariant/tst_qvariant.cpp @@ -0,0 +1,195 @@ +/**************************************************************************** +** +** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). +** Contact: Qt Software Information (qt-info@nokia.com) +** +** This file is part of the test suite of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the either Technology Preview License Agreement or the +** Beta Release License Agreement. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain +** additional rights. These rights are described in the Nokia Qt LGPL +** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this +** package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at qt-sales@nokia.com. +** $QT_END_LICENSE$ +** +****************************************************************************/ +#include <QtCore> +#include <qtest.h> + +#define ITERATION_COUNT 1e5 + +class tst_qvariant : public QObject +{ + Q_OBJECT +private slots: + void doubleVariantCreation(); + void floatVariantCreation(); + void rectVariantCreation(); + void stringVariantCreation(); + void doubleVariantSetValue(); + void floatVariantSetValue(); + void rectVariantSetValue(); + void stringVariantSetValue(); + void doubleVariantAssignment(); + void floatVariantAssignment(); + void rectVariantAssignment(); + void stringVariantAssignment(); +}; + + +void tst_qvariant::doubleVariantCreation() +{ + double d = 0; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + QVariant v(d); + } + } +} + +void tst_qvariant::floatVariantCreation() +{ + float f = 0; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + QVariant v(f); + } + } +} + +void tst_qvariant::rectVariantCreation() +{ + QRect r(1,2,3,4); + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + QVariant v(r); + } + } +} + +void tst_qvariant::stringVariantCreation() +{ + QString s; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + QVariant v(s); + } + } +} + +void tst_qvariant::doubleVariantSetValue() +{ + double d = 0; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + qVariantSetValue(v, d); + } + } +} + +void tst_qvariant::floatVariantSetValue() +{ + float f = 0; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + qVariantSetValue(v, f); + } + } +} + +void tst_qvariant::rectVariantSetValue() +{ + QRect r; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + qVariantSetValue(v, r); + } + } +} + +void tst_qvariant::stringVariantSetValue() +{ + QString s; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + qVariantSetValue(v, s); + } + } +} + +void tst_qvariant::doubleVariantAssignment() +{ + double d = 0; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + v = d; + } + } +} + +void tst_qvariant::floatVariantAssignment() +{ + float f = 0; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + v = f; + } + } +} + +void tst_qvariant::rectVariantAssignment() +{ + QRect r; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + v = r; + } + } +} + +void tst_qvariant::stringVariantAssignment() +{ + QString s; + QVariant v; + QBENCHMARK { + for(int i = 0; i < ITERATION_COUNT; ++i) { + v = s; + } + } +} + +QTEST_MAIN(tst_qvariant) + +#include "tst_qvariant.moc" |