Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix hdf5 compiler check #1493

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ check-code-coverage: check
.PHONY: check-code-coverage

clean-local:
-rm -rf .mods coverage-data coverage-report
-rm -rf .mods coverage-data coverage-report test.nc
else
clean-local:
-rm -rf .mods
-rm -rf .mods test.nc
endif

install-data-hook:
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ AC_MSG_CHECKING([if HDF5 version causes floating point exceptions with set flags
AC_RUN_IFELSE([AC_LANG_PROGRAM([], [[
use netcdf
integer i, j
j = nf90_open("test.nc", NC_WRITE, i)
j = nf90_create("test.nc", NC_WRITE, i)
bensonr marked this conversation as resolved.
Show resolved Hide resolved
]])], [hdf5_fpe_bug=no], [hdf5_fpe_bug=yes])
AC_MSG_RESULT([$hdf5_fpe_bug])
if test $hdf5_fpe_bug = yes; then
Expand Down
2 changes: 1 addition & 1 deletion test_fms/monin_obukhov/test_monin_obukhov2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for p in r4 r8
do
cp ${top_srcdir}/test_fms/monin_obukhov/input.${p}.nml input.nml
test_expect_success "test monin_obukhov_mod (${p})" "mpirun -n 1 ./test_monin_obukhov_${p}"
rm input.nml
rm -f input.nml
done

test_done
Loading