From 911ec65e1bff99ced5b3533b2efbcca44bebb220 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sat, 12 Sep 2020 14:45:48 +0100 Subject: [PATCH] Exclude MSVC compiler due to Appveyor reporting an internal compiler error --- test/test_array.cpp | 2 +- test/test_array_view.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_array.cpp b/test/test_array.cpp index 42a6c2e7..98368651 100644 --- a/test/test_array.cpp +++ b/test/test_array.cpp @@ -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) { diff --git a/test/test_array_view.cpp b/test/test_array_view.cpp index 77e54633..be415938 100644 --- a/test/test_array_view.cpp +++ b/test/test_array_view.cpp @@ -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 };