summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks
diff options
context:
space:
mode:
authorKent Hansen <kent.hansen@nokia.com>2010-02-26 14:49:51 (GMT)
committerKent Hansen <kent.hansen@nokia.com>2010-02-26 14:49:51 (GMT)
commita262cb0abec91ccce2502547fc376364e9d804da (patch)
tree2a61451345c34ddfcc3dfe47aa4f265e76a79535 /tests/benchmarks
parentf3eab3dd1bc982ad5847fdff67a59e2edfa20b54 (diff)
downloadQt-a262cb0abec91ccce2502547fc376364e9d804da.zip
Qt-a262cb0abec91ccce2502547fc376364e9d804da.tar.gz
Qt-a262cb0abec91ccce2502547fc376364e9d804da.tar.bz2
Bump iteration count to make QMetaType::type() benchmark results more stable
With the recent optimizations it's just too fast now. ;)
Diffstat (limited to 'tests/benchmarks')
-rw-r--r--tests/benchmarks/corelib/kernel/qmetatype/tst_qmetatype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmarks/corelib/kernel/qmetatype/tst_qmetatype.cpp b/tests/benchmarks/corelib/kernel/qmetatype/tst_qmetatype.cpp
index c3324df..36399af 100644
--- a/tests/benchmarks/corelib/kernel/qmetatype/tst_qmetatype.cpp
+++ b/tests/benchmarks/corelib/kernel/qmetatype/tst_qmetatype.cpp
@@ -96,7 +96,7 @@ void tst_QMetaType::typeBuiltin()
QFETCH(QByteArray, typeName);
const char *nm = typeName.constData();
QBENCHMARK {
- for (int i = 0; i < 50000; ++i)
+ for (int i = 0; i < 100000; ++i)
QMetaType::type(nm);
}
}