mirror of
https://github.com/microsoft/GSL.git
synced 2025-04-03 17:38:35 -04:00
fix tests for pre-C++17
This commit is contained in:
parent
97b95a5e57
commit
49c61d2551
@ -412,7 +412,7 @@ TEST(span_test, from_std_array_constructor)
|
|||||||
static_assert(!CtorCompilesFor<span<int, 5>, std::array<int, 4>&>,
|
static_assert(!CtorCompilesFor<span<int, 5>, std::array<int, 4>&>,
|
||||||
"!CtorCompilesFor<span<int, 5>, std::array<int, 4>&>");
|
"!CtorCompilesFor<span<int, 5>, std::array<int, 4>&>");
|
||||||
|
|
||||||
#if !defined(_MSC_VER) || (_MSC_VER > 1942) || (__cplusplus >= 201703L)
|
#if !defined(_MSC_VER) || (_MSC_VER > 1943) || (__cplusplus >= 201703L)
|
||||||
// Fails on "Visual Studio 16 2019/Visual Studio 17 2022, windows-2019/2022, Debug/Release, 14".
|
// Fails on "Visual Studio 16 2019/Visual Studio 17 2022, windows-2019/2022, Debug/Release, 14".
|
||||||
static_assert(!ConversionCompilesFor<span<int>, std::array<int, 4>>,
|
static_assert(!ConversionCompilesFor<span<int>, std::array<int, 4>>,
|
||||||
"!ConversionCompilesFor<span<int>, std::array<int, 4>>");
|
"!ConversionCompilesFor<span<int>, std::array<int, 4>>");
|
||||||
@ -529,7 +529,7 @@ TEST(span_test, from_container_constructor)
|
|||||||
EXPECT_TRUE(cs.data() == cstr.data());
|
EXPECT_TRUE(cs.data() == cstr.data());
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(_MSC_VER) || (_MSC_VER > 1942) || (__cplusplus >= 201703L)
|
#if !defined(_MSC_VER) || (_MSC_VER > 1943) || (__cplusplus >= 201703L)
|
||||||
// Fails on "Visual Studio 16 2019/Visual Studio 17 2022, windows-2019/2022, Debug/Release, 14".
|
// Fails on "Visual Studio 16 2019/Visual Studio 17 2022, windows-2019/2022, Debug/Release, 14".
|
||||||
static_assert(!ConversionCompilesFor<span<int>, std::vector<int>>,
|
static_assert(!ConversionCompilesFor<span<int>, std::vector<int>>,
|
||||||
"!ConversionCompilesFor<span<int>, std::vector<int>>");
|
"!ConversionCompilesFor<span<int>, std::vector<int>>");
|
||||||
@ -1293,9 +1293,15 @@ TEST(span_test, empty_span)
|
|||||||
TEST(span_test, conversions)
|
TEST(span_test, conversions)
|
||||||
{
|
{
|
||||||
int arr[5] = {1, 2, 3, 4, 5};
|
int arr[5] = {1, 2, 3, 4, 5};
|
||||||
span s = arr;
|
|
||||||
|
|
||||||
|
#if defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L)
|
||||||
|
span s = arr;
|
||||||
span cs = s;
|
span cs = s;
|
||||||
|
#else
|
||||||
|
span<int, 5> s = arr;
|
||||||
|
span<int, 5> cs = s;
|
||||||
|
#endif
|
||||||
|
|
||||||
EXPECT_TRUE(cs.size() == s.size());
|
EXPECT_TRUE(cs.size() == s.size());
|
||||||
EXPECT_TRUE(cs.data() == s.data());
|
EXPECT_TRUE(cs.data() == s.data());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user