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>
This commit is contained in:
parent
53755617e4
commit
78f9b16d60
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user