summaryrefslogtreecommitdiffstats
path: root/tests/auto/testlib/selftests/crashes
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2016-03-09 14:55:52 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2016-04-06 10:56:02 +0000
commit8104729e63dea923ce64149af67e51ad84ad386a (patch)
tree0904260ec7a7f927a8dc7e2c9d16e5b4baa08b23 /tests/auto/testlib/selftests/crashes
parented2490433f379914b082e6b4ee04dc35b9d85cb7 (diff)
QtTest: Remove Windows CE.
Remove #ifdef sections for Q_OS_WINCE and wince .pro file clauses in library and tests. Task-number: QTBUG-51673 Change-Id: I552b3fe8d6e0eb7c8c7b3a3d41558e5e21904dd2 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'tests/auto/testlib/selftests/crashes')
-rw-r--r--tests/auto/testlib/selftests/crashes/tst_crashes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/testlib/selftests/crashes/tst_crashes.cpp b/tests/auto/testlib/selftests/crashes/tst_crashes.cpp
index 6cfa023b7e..87b241f5e5 100644
--- a/tests/auto/testlib/selftests/crashes/tst_crashes.cpp
+++ b/tests/auto/testlib/selftests/crashes/tst_crashes.cpp
@@ -44,7 +44,7 @@ private slots:
void tst_Crashes::crash()
{
-#if defined(Q_OS_WIN) && !defined(Q_OS_WINCE) && !defined(Q_OS_WINRT)
+#if defined(Q_OS_WIN) && !defined(Q_OS_WINRT)
//we avoid the error dialogbox to appear on windows
SetErrorMode( SEM_NOGPFAULTERRORBOX | SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX);
#endif