Skip to content
Open
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
2 changes: 1 addition & 1 deletion cmake/config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ if(NOT "${SC_ENABLE_MPI}" STREQUAL "${CACHED_SC_ENABLE_MPI}")
unset(SC_HAVE_MPI_INT8_T CACHE)
unset(SC_ENABLE_MPIIO CACHE)
# Update cached variable
set(CACHED_SC_ENABLE_MPI "${SC_ENABLE_MPI}" CACHE STRING "Cached value of SC_ENABLE_MPI")
set(CACHED_SC_ENABLE_MPI "${SC_ENABLE_MPI}" CACHE STRING "Cached value of SC_ENABLE_MPI" FORCE)
endif()

if( SC_ENABLE_MPI )
Expand Down
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include(CTest)

set(sc_tests allgather arrays keyvalue notify reduce search sortb version scda)
set(sc_tests allgather arrays keyvalue mpi_pack notify reduce search sortb version scda)

if(SC_HAVE_RANDOM AND SC_HAVE_SRANDOM)
list(APPEND sc_tests node_comm)
Expand All @@ -10,7 +10,7 @@ if(SC_HAVE_UNISTD_H)
list(APPEND sc_tests sort)
endif()

list(APPEND sc_tests builtin io_sink helpers)
list(APPEND sc_tests builtin io_file io_sink helpers)

set(MPI_WRAPPER)
if(MPIEXEC_EXECUTABLE)
Expand Down
Loading