summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-12-21 18:22:32 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-12-21 18:22:32 (GMT)
commit991996b25122ff010b9af1bbb6cc05be491ce038 (patch)
treea1416d76f291ed8faf46373dc9d535842aa0993b /tools
parent909fa39bc75f850b0f32e48e9b0f1bcd9f1be573 (diff)
downloadhdf5-991996b25122ff010b9af1bbb6cc05be491ce038.zip
hdf5-991996b25122ff010b9af1bbb6cc05be491ce038.tar.gz
hdf5-991996b25122ff010b9af1bbb6cc05be491ce038.tar.bz2
Remove unused CMake files
Diffstat (limited to 'tools')
-rw-r--r--tools/test/h5repack/CMakeTests.cmake10
-rw-r--r--tools/test/h5repack/CMakeVOLTests.cmake55
2 files changed, 0 insertions, 65 deletions
diff --git a/tools/test/h5repack/CMakeTests.cmake b/tools/test/h5repack/CMakeTests.cmake
index d48f188..c2a2be7 100644
--- a/tools/test/h5repack/CMakeTests.cmake
+++ b/tools/test/h5repack/CMakeTests.cmake
@@ -1435,13 +1435,3 @@ endif ()
if (HDF5_TEST_VFD)
include (CMakeVFDTests.cmake)
endif ()
-
-##############################################################################
-##############################################################################
-### V O L T E S T S ###
-##############################################################################
-##############################################################################
-
-if (HDF5_TEST_VOL)
- include (CMakeVOLTests.cmake)
-endif ()
diff --git a/tools/test/h5repack/CMakeVOLTests.cmake b/tools/test/h5repack/CMakeVOLTests.cmake
deleted file mode 100644
index da19d59..0000000
--- a/tools/test/h5repack/CMakeVOLTests.cmake
+++ /dev/null
@@ -1,55 +0,0 @@
-#
-# Copyright by The HDF Group.
-# All rights reserved.
-#
-# This file is part of HDF5. The full HDF5 copyright notice, including
-# terms governing use, modification, and redistribution, is contained in
-# the COPYING file, which can be found at the root of the source code
-# distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.
-# If you do not have access to either file, you may request a copy from
-# help@hdfgroup.org.
-#
-
-##############################################################################
-##############################################################################
-### T E S T I N G ###
-##############################################################################
-##############################################################################
-
- set (VOL_LIST
- )
-
-##############################################################################
-##############################################################################
-### T H E T E S T S M A C R O S ###
-##############################################################################
-##############################################################################
-
- macro (ADD_VOL_TEST volname resultcode)
- add_test (
- NAME H5REPACK-VOL-${volname}-h5repacktest
- COMMAND "${CMAKE_COMMAND}"
- -D "TEST_PROGRAM=$<TARGET_FILE:h5repacktest>"
- -D "TEST_ARGS:STRING="
- -D "TEST_VFD:STRING=${volname}"
- -D "TEST_EXPECT=${resultcode}"
- -D "TEST_OUTPUT=h5repacktest"
- -D "TEST_FOLDER=${PROJECT_BINARY_DIR}"
- -P "${HDF_RESOURCES_DIR}/volTest.cmake"
- )
- if (NOT "${last_test}" STREQUAL "")
- set_tests_properties (H5REPACK-VOL-${volname}-h5repacktest PROPERTIES DEPENDS ${last_test})
- endif ()
- set (last_test "H5REPACK-VOL-${volname}-h5repacktest")
- endmacro ()
-
-##############################################################################
-##############################################################################
-### T H E T E S T S ###
-##############################################################################
-##############################################################################
-
- # Run test with different VOL
-# foreach (vol ${VOL_LIST})
-# ADD_VOL_TEST (${vol} 0)
-# endforeach ()