Skip to content

Commit 41ae266

Browse files
Revert "[C++] Revert disabled test to investigate appveyor failure"
This reverts commit f2e4dfa.
1 parent e69b1e9 commit 41ae266

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

cpp/src/arrow/CMakeLists.txt

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -302,13 +302,22 @@ arrow_add_pkg_config("arrow")
302302

303303
add_arrow_test(allocator-test)
304304

305-
add_arrow_test(array-test
306-
SOURCES
307-
array-test.cc
308-
array-binary-test.cc
309-
array-dict-test.cc
310-
array-list-test.cc
311-
array-struct-test.cc)
305+
if(WIN32)
306+
add_arrow_test(array-test
307+
SOURCES
308+
array-test.cc
309+
array-binary-test.cc
310+
array-list-test.cc
311+
array-struct-test.cc)
312+
else()
313+
add_arrow_test(array-test
314+
SOURCES
315+
array-test.cc
316+
array-binary-test.cc
317+
array-dict-test.cc
318+
array-list-test.cc
319+
array-struct-test.cc)
320+
endif()
312321

313322
add_arrow_test(buffer-test)
314323

0 commit comments

Comments
 (0)