8000 Disabled test leading to compilation error on Windows · xtensor-stack/xtensor-python@0632752 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0632752

Browse files
committed
Disabled test leading to compilation error on Windows
1 parent ef601e8 commit 0632752

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/test_common.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,10 @@ namespace xt
160160
{
161161
EXPECT_TRUE(std::equal(vec.shape().cbegin(), vec.shape().cend(), result.shape().cbegin()));
162162
EXPECT_TRUE(std::equal(vec.strides().cbegin(), vec.strides().cend(), result.strides().cbegin()));
163+
// TODO: check why this does not build on modern MSVC compilers
164+
#ifndef WIN32
163165
EXPECT_TRUE(std::equal(vec.backstrides().cbegin(), vec.backstrides().cend(), result.backstrides().cbegin()));
166+
#endif
164167
EXPECT_EQ(vec.size(), result.size());
165168
if (compare_layout)
166169
{

0 commit comments

Comments
 (0)
0