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 for mpp stdlog test fails with intel ci #1552

Merged
merged 2 commits into from
Jul 26, 2024
Merged
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
5 changes: 4 additions & 1 deletion test_fms/mpp/test_stdlog.F90
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ subroutine check_write()
do i=1, 7
read(u_num_warn, '(A)') line
if (trim(line) == '') cycle
!! if we're testing with the old io enabled, we'll have some additional output we can skip
if (trim(line) == 'NOTE from PE 0: MPP_IO_SET_STACK_SIZE: stack size set to 131072.') cycle
if(trim(line) .ne. trim(ref_line(ref_num))) call mpp_error(FATAL, "warnfile output does not match reference data"&
//"reference line:"//ref_line(ref_num) &
//"output line:"//line)
Expand All @@ -91,4 +93,5 @@ subroutine check_write()
close(u_num_warn)
end subroutine check_write

end program test_stdlog
end program test_stdlog

Loading