summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@nokia.com>2011-03-22 14:48:16 (GMT)
committerThiago Macieira <thiago.macieira@nokia.com>2011-03-22 14:52:09 (GMT)
commitbd4b9fc3dd1e4f89cee4bb3e7921bf50f28eb9d9 (patch)
treebc864037b6f04b4fdf2606e9213d854eeaea56f4
parent243021f6836f156f6a982ac74404c91a1e77f23a (diff)
downloadQt-bd4b9fc3dd1e4f89cee4bb3e7921bf50f28eb9d9.zip
Qt-bd4b9fc3dd1e4f89cee4bb3e7921bf50f28eb9d9.tar.gz
Qt-bd4b9fc3dd1e4f89cee4bb3e7921bf50f28eb9d9.tar.bz2
Remove the use of the QtTest baseline feature I reverted
-rw-r--r--tests/benchmarks/corelib/tools/qstring/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/benchmarks/corelib/tools/qstring/main.cpp b/tests/benchmarks/corelib/tools/qstring/main.cpp
index 2339db9..df41efd 100644
--- a/tests/benchmarks/corelib/tools/qstring/main.cpp
+++ b/tests/benchmarks/corelib/tools/qstring/main.cpp
@@ -1716,8 +1716,8 @@ void fromLatin1_neon_handwritten(ushort *dst, const char *str, int len)
void tst_QString::fromLatin1Alternatives_data() const
{
QTest::addColumn<FromLatin1Function>("function");
- QTest::newRow("empty", QTest::Zero) << FromLatin1Function(0);
- QTest::newRow("regular", QTest::Baseline) << &fromLatin1_regular;
+ QTest::newRow("empty") << FromLatin1Function(0);
+ QTest::newRow("regular") << &fromLatin1_regular;
#ifdef __SSE2__
QTest::newRow("sse2-qt4.7") << &fromLatin1_sse2_qt47;
QTest::newRow("sse2-improved") << &fromLatin1_sse2_improved;
@@ -2400,8 +2400,8 @@ int fromUtf8_neon_trusted(ushort *qch, const char *chars, int len)
void tst_QString::fromUtf8Alternatives_data() const
{
QTest::addColumn<FromUtf8Function>("function");
- QTest::newRow("empty", QTest::Zero) << FromUtf8Function(0);
- QTest::newRow("qt-4.7", QTest::Baseline) << &fromUtf8_qt47;
+ QTest::newRow("empty") << FromUtf8Function(0);
+ QTest::newRow("qt-4.7") << &fromUtf8_qt47;
QTest::newRow("qt-4.7-stateless") << &fromUtf8_qt47_stateless;
QTest::newRow("optimized-for-ascii") << &fromUtf8_optimised_for_ascii;
#ifdef __SSE2__