Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cpp/src/arrow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ set(ARROW_SRCS
io/compressed.cc
io/file.cc
io/hdfs.cc
io/hdfs_internal.cc
io/interfaces.cc
io/memory.cc
io/readahead.cc
Expand Down Expand Up @@ -266,6 +265,8 @@ if(ARROW_FILESYSTEM)

list(APPEND ARROW_SRCS
filesystem/filesystem.cc
filesystem/hdfs.cc
filesystem/hdfs_internal.cc
filesystem/localfs.cc
filesystem/mockfs.cc
filesystem/path_tree.cc
Expand Down
4 changes: 4 additions & 0 deletions cpp/src/arrow/filesystem/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,7 @@ if(ARROW_S3)
add_dependencies(arrow-tests arrow-s3fs-narrative-test)
endif()
endif()

if(ARROW_HDFS)
add_arrow_test(hdfs_test NO_VALGRIND)
endif()
Loading