summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/global/qnumeric
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-09-29 17:07:47 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-09-30 04:28:39 +0000
commit78f9b16d60357b544353cb7d525ffdf56ab72680 (patch)
tree95c15089ac58f122a8cd34d366307a4d4b551fa0 /tests/auto/corelib/global/qnumeric
parent53755617e4bf688b69fa700a0e9bf9ac72876d22 (diff)
Skip tst_QNumeric::addOverflow() for MSVC2015.
The code still produces Internal Compiler Errors in release mode. Task-number: QTBUG-46344 Change-Id: I86d3608b13a197a0b65b83829d1512203e1578f8 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'tests/auto/corelib/global/qnumeric')
-rw-r--r--tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp b/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
index 59a536ed25..6be8ff81cf 100644
--- a/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
+++ b/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
@@ -225,8 +225,8 @@ void tst_QNumeric::addOverflow_data()
// to QTest::toString and QTest::qCompare will remain.
template <typename Int> static void addOverflow_template()
{
-#if defined(Q_CC_MSVC) && Q_CC_MSVC < 1900
- QSKIP("Test disabled, this test generates an Internal Compiler Error compiling");
+#if defined(Q_CC_MSVC) && Q_CC_MSVC < 2000
+ QSKIP("Test disabled, this test generates an Internal Compiler Error compiling in release mode");
#else
const Int max = std::numeric_limits<Int>::max();
Int r;