mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Try to detect Appveyor
This commit is contained in:
parent
5aa3d734a6
commit
83f710d636
@ -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)
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user