Try to detect Appveyor

This commit is contained in:
John Wellbelove 2020-09-12 14:24:55 +01:00
parent 5aa3d734a6
commit 83f710d636
2 changed files with 4 additions and 0 deletions

View File

@ -57,6 +57,7 @@ namespace
CHECK_EQUAL(data.max_size(), SIZE);
}
#ifndef APPVEYOR
//*************************************************************************
TEST(test_cpp17_deduced_constructor)
{
@ -66,6 +67,7 @@ namespace
bool isEqual = std::equal(data.begin(), data.end(), compare.begin());
CHECK(isEqual);
}
#endif
//*************************************************************************
TEST(test_assignment)

View File

@ -248,6 +248,7 @@ namespace
}
//*************************************************************************
#ifndef APPVEYOR
TEST(test_cpp17_dedused_constructor)
{
etl::array data{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
@ -277,6 +278,7 @@ namespace
isEqual = std::equal(view5.begin(), view5.end(), c_array);
CHECK(isEqual);
}
#endif
//*************************************************************************
TEST(test_constructor_range)