mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-06 14:56:51 +08:00
2e4302818a
Remove all traces of MPI-POSIX VFD and GPFS detection/code. Remove remaining traces of stream VFD. Remove testpar/t_posix_compliant test (it's not actually verifying anything). Clean up H5D__mpio_opt_possible() further. Moved environment variable that disables MPI collective operations into MPI-IO VFD (instead of it being in src/H5S.c). A few other small code cleanups. Tested on: Mac OSX/64 10.9.2 (amazon) w/parallel & serial
60 lines
1.9 KiB
CMake
60 lines
1.9 KiB
CMake
|
|
##############################################################################
|
|
##############################################################################
|
|
### T E S T I N G ###
|
|
##############################################################################
|
|
##############################################################################
|
|
|
|
add_test (NAME TEST_PAR_testphdf5 COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $<TARGET_FILE:testphdf5>)
|
|
|
|
foreach (testp ${H5P_TESTS})
|
|
add_test (NAME TEST_PAR_${testp} COMMAND ${MPIEXEC} ${MPIEXEC_PREFLAGS} ${MPIEXEC_NUMPROC_FLAG} ${MPIEXEC_MAX_NUMPROCS} ${MPIEXEC_POSTFLAGS} $<TARGET_FILE:${testp}>)
|
|
endforeach (testp ${H5P_TESTS})
|
|
|
|
SET_TESTS_PROPERTIES(TEST_PAR_t_pflush2 PROPERTIES DEPENDS TEST_PAR_t_pflush1)
|
|
|
|
if (HDF5_TEST_VFD)
|
|
|
|
set (VFD_LIST
|
|
sec2
|
|
stdio
|
|
core
|
|
split
|
|
multi
|
|
family
|
|
)
|
|
|
|
set (H5P_VFD_TESTS
|
|
t_pflush1
|
|
t_pflush2
|
|
)
|
|
|
|
if (DIRECT_VFD)
|
|
set (VFD_LIST ${VFD_LIST} direct)
|
|
endif (DIRECT_VFD)
|
|
|
|
MACRO (ADD_VFD_TEST vfdname resultcode)
|
|
if (NOT HDF5_ENABLE_USING_MEMCHECKER)
|
|
foreach (test ${H5P_VFD_TESTS})
|
|
add_test (
|
|
NAME VFD-${vfdname}-${test}
|
|
COMMAND "${CMAKE_COMMAND}"
|
|
-D "TEST_PROGRAM=$<TARGET_FILE:${test}>"
|
|
-D "TEST_ARGS:STRING="
|
|
-D "TEST_VFD:STRING=${vfdname}"
|
|
-D "TEST_EXPECT=${resultcode}"
|
|
-D "TEST_OUTPUT=${test}"
|
|
-D "TEST_FOLDER=${PROJECT_BINARY_DIR}"
|
|
-P "${HDF5_RESOURCES_DIR}/vfdTest.cmake"
|
|
)
|
|
endforeach (test ${H5P_VFD_TESTS})
|
|
endif (NOT HDF5_ENABLE_USING_MEMCHECKER)
|
|
ENDMACRO (ADD_VFD_TEST)
|
|
|
|
# Run test with different Virtual File Driver
|
|
foreach (vfd ${VFD_LIST})
|
|
ADD_VFD_TEST (${vfd} 0)
|
|
endforeach (vfd ${VFD_LIST})
|
|
|
|
endif (HDF5_TEST_VFD)
|