summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/corelib/tools/containers-sequential/main.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2016-03-10 14:38:37 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2016-03-31 06:14:04 +0000
commitf720619e0df51a0bdcb330762fadd7fb254542df (patch)
treee9e8a193f0dbd0149410437da71e8ecc289bdea5 /tests/benchmarks/corelib/tools/containers-sequential/main.cpp
parent137353315c936b901367e9fa052ecc4b6a6b0820 (diff)
Remove Windows CE from tests (others).
Remove #ifdef sections for Q_OS_WINCE, wince .pro file clauses and CE-specific files. Task-number: QTBUG-51673 Change-Id: Ibf599204f5c0daaef086edaf8fac86853db3ee14 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'tests/benchmarks/corelib/tools/containers-sequential/main.cpp')
-rw-r--r--tests/benchmarks/corelib/tools/containers-sequential/main.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/benchmarks/corelib/tools/containers-sequential/main.cpp b/tests/benchmarks/corelib/tools/containers-sequential/main.cpp
index 9ce8fffa8e..64d3dd5733 100644
--- a/tests/benchmarks/corelib/tools/containers-sequential/main.cpp
+++ b/tests/benchmarks/corelib/tools/containers-sequential/main.cpp
@@ -119,12 +119,7 @@ struct Large { // A "large" item type
int x[1000];
};
-// Embedded devices typically have limited memory
-#if defined(Q_OS_WINCE)
-# define LARGE_MAX_SIZE 2000
-#else
-# define LARGE_MAX_SIZE 20000
-#endif
+#define LARGE_MAX_SIZE 20000
class tst_vector_vs_std : public QObject
{