Exclude MSVC compiler due to Appveyor reporting an internal compiler error

This commit is contained in:
John Wellbelove 2020-09-12 14:45:48 +01:00
parent 83f710d636
commit 911ec65e1b
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ namespace
CHECK_EQUAL(data.max_size(), SIZE);
}
#ifndef APPVEYOR
#ifndef ETL_COMPILER_MICROSOFT // Temporarily disabled as Appveyor reports an "internal compiler error
//*************************************************************************
TEST(test_cpp17_deduced_constructor)
{

View File

@ -248,7 +248,7 @@ namespace
}
//*************************************************************************
#ifndef APPVEYOR
#ifndef ETL_COMPILER_MICROSOFT // Temporarily disabled as Appveyor reports an "internal compiler error
TEST(test_cpp17_dedused_constructor)
{
etl::array data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };