File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,3 @@ include(cmake/hdf5.cmake)
1212add_subdirectory (src)
1313
1414add_subdirectory (tests)
15-
16- add_executable (shapes_check src/GetShape.f90)
17- target_link_libraries (shapes_check PRIVATE hdf5oo)
18- add_test (NAME ShapeCheck COMMAND shapes_check p5.h5 group69/flux_node)
19- set_tests_properties (ShapeCheck PROPERTIES FIXTURES_REQUIRED h5files)
Original file line number Diff line number Diff line change 11add_executable (testh5 test_hdf5_ifc.f90)
22target_link_libraries (testh5 PRIVATE hdf5oo)
33set_target_properties (testh5 PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_BINARY_DIR} )
4- add_test (NAME h5oo COMMAND testh5)
5- set_tests_properties (h5oo PROPERTIES FIXTURES_SETUP h5files)
64if (${CMAKE_Fortran_COMPILER_ID} STREQUAL GNU)
75 target_compile_options (testh5 PRIVATE -Wno-compare-reals)
86endif ()
7+
8+ add_test (NAME h5oo COMMAND testh5)
9+ set_tests_properties (h5oo PROPERTIES
10+ FIXTURES_SETUP h5files)
11+
12+
13+ add_executable (shapes_check GetShape.f90)
14+ target_link_libraries (shapes_check PRIVATE hdf5oo)
15+ set_target_properties (shapes_check PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_BINARY_DIR} )
16+
17+ add_test (NAME ShapeCheck COMMAND shapes_check ${CMAKE_CURRENT_BINARY_DIR} /p5.h5 group69/flux_node)
18+ set_tests_properties (ShapeCheck PROPERTIES
19+ FIXTURES_REQUIRED h5files
20+ REQUIRED_FILES ${CMAKE_CURRENT_BINARY_DIR} /p5.h5)
File renamed without changes.
You can’t perform that action at this time.
0 commit comments