diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-20 19:04:25 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2021-01-20 19:04:25 (GMT) |
commit | 2439a048b0b98b654d6b4a68146eb65283c575e8 (patch) | |
tree | da464d8cc5b165254ece5e9ba863f3324e7c5ae9 /Modules | |
parent | 2c0e4c37624e673a6d513cffc8edb1d595d175a9 (diff) | |
download | CMake-2439a048b0b98b654d6b4a68146eb65283c575e8.zip CMake-2439a048b0b98b654d6b4a68146eb65283c575e8.tar.gz CMake-2439a048b0b98b654d6b4a68146eb65283c575e8.tar.bz2 |
FindHDF5: avoid writing to the output when testing h5cc
The execution of this tool can output error logs to the output during
configure. This can then be caught by CTest and flagged as an error
during the build.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindHDF5.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/FindHDF5.cmake b/Modules/FindHDF5.cmake index 25f5a1f..6bbc821 100644 --- a/Modules/FindHDF5.cmake +++ b/Modules/FindHDF5.cmake @@ -360,6 +360,8 @@ function( _HDF5_invoke_compiler language output_var return_value_var version_var execute_process( COMMAND ${HDF5_${language}_COMPILER_EXECUTABLE} ${test_file} WORKING_DIRECTORY ${scratch_dir} + OUTPUT_VARIABLE output + ERROR_VARIABLE output RESULT_VARIABLE return_value ) if(return_value) |