summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-05-12 18:51:33 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-05-12 18:51:33 (GMT)
commit84103cef854a758a8d5dcd270ba36e2495ed3282 (patch)
treef11548eec782a94edda60d2f78edb7f320d8b4c2 /testpar
parent08ce72aebd7b8957a11c365f95b4bbded708e91f (diff)
downloadhdf5-84103cef854a758a8d5dcd270ba36e2495ed3282.zip
hdf5-84103cef854a758a8d5dcd270ba36e2495ed3282.tar.gz
hdf5-84103cef854a758a8d5dcd270ba36e2495ed3282.tar.bz2
[svn-r18773] Add files to support building library with CMake
Tested: Local linux
Diffstat (limited to 'testpar')
-rw-r--r--testpar/CMakeLists.txt46
1 files changed, 46 insertions, 0 deletions
diff --git a/testpar/CMakeLists.txt b/testpar/CMakeLists.txt
new file mode 100644
index 0000000..cf12342
--- /dev/null
+++ b/testpar/CMakeLists.txt
@@ -0,0 +1,46 @@
+cmake_minimum_required (VERSION 2.8)
+PROJECT (H5_TEST_PAR)
+
+#-----------------------------------------------------------------------------
+# Define Tests
+#-----------------------------------------------------------------------------
+
+SET (testphdf5_SRCS
+ ${HDF5_TEST_PAR_SOURCE_DIR}/testphdf5.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_dset.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_file.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_mdset.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_ph5basic.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_coll_chunk.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_span_tree.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_chunk_alloc.c
+ ${HDF5_TEST_PAR_SOURCE_DIR}/t_filter_read.c
+)
+
+#-- Adding test for testhdf5
+ADD_EXECUTABLE (testphdf5 ${testphdf5_SRCS})
+H5_NAMING (testphdf5)
+TARGET_LINK_LIBRARIES (testphdf5 ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET})
+
+ADD_TEST (NAME testphdf5 COMMAND $<TARGET_FILE:testphdf5>)
+
+MACRO (ADD_H5P_TEST file)
+ ADD_EXECUTABLE (${file} ${HDF5_TEST_PAR_SOURCE_DIR}/${file}.c)
+ H5_NAMING (${file})
+ TARGET_LINK_LIBRARIES (${file} ${HDF5_TEST_LIB_TARGET} ${HDF5_LIB_TARGET})
+
+ ADD_TEST (NAME ${file} COMMAND $<TARGET_FILE:${file}>)
+ENDMACRO (ADD_H5P_TEST file)
+
+SET (H5P_TESTS
+ t_mpi
+ t_posix_compliant
+ t_cache
+ t_pflush1
+ t_pflush2
+)
+
+FOREACH (testp ${H5P_TESTS})
+ ADD_H5P_TEST(${testp})
+ENDFOREACH (testp ${H5P_TESTS})
+