summaryrefslogtreecommitdiffstats
path: root/test/CMakeVFDTests.cmake
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-02-27 19:33:38 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-02-27 19:33:38 (GMT)
commit90f01d5b160e0cbf950a9378d0a2625918a6eeb8 (patch)
treebaaa3e1ccaad94e8c8f37156a3318194e5652e41 /test/CMakeVFDTests.cmake
parentb36bad53d9d5930ef1339d0db1bd7152c0e9b75d (diff)
downloadhdf5-90f01d5b160e0cbf950a9378d0a2625918a6eeb8.zip
hdf5-90f01d5b160e0cbf950a9378d0a2625918a6eeb8.tar.gz
hdf5-90f01d5b160e0cbf950a9378d0a2625918a6eeb8.tar.bz2
Fix IN_LIST usage
Diffstat (limited to 'test/CMakeVFDTests.cmake')
-rw-r--r--test/CMakeVFDTests.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CMakeVFDTests.cmake b/test/CMakeVFDTests.cmake
index 9897f3f..20020f8 100644
--- a/test/CMakeVFDTests.cmake
+++ b/test/CMakeVFDTests.cmake
@@ -237,7 +237,7 @@ endif ()
macro (ADD_VFD_TEST vfdname resultcode)
foreach (test ${H5_TESTS})
- if (NOT "${test}" IN_LIST ${H5_VFD_SKIP_TESTS})
+ if (NOT "${test}" IN_LIST H5_VFD_SKIP_TESTS)
if (WIN32)
CHECK_VFD_TEST (${test} ${vfdname} ${resultcode})
else ()