Skip to content

Commit

Permalink
fix: mpp stdlog test fails with use_deprecated_io flag (#1552)
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored Jul 26, 2024
1 parent 94d66ee commit bc62069
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit bc62069

Please sign in to comment.