Skip to content

Commit

Permalink
Merge pull request #212 from apcraig/testC
Browse files Browse the repository at this point in the history
minor updates for testing
  • Loading branch information
eclare108213 authored Aug 3, 2018
2 parents fd52cb1 + c7d69c7 commit 3422428
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion columnphysics/icepack_warnings.F90
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ subroutine icepack_warnings_print(iounit)
character(len=*),parameter :: subname='(icepack_warnings_print)'

do iWarning = 1, icepack_warnings_number()
write(iounit,*) trim(icepack_warnings_getone(iWarning))
! tcx, tcraig this causes a recursive IO error on some platforms/compilers
! write(iounit,*) trim(icepack_warnings_getone(iWarning))
write(iounit,*) trim(warnings(iWarning))
enddo

end subroutine icepack_warnings_print
Expand Down
4 changes: 2 additions & 2 deletions configuration/scripts/icepack.batch.csh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ EOF0
if (${ICE_MACHINE} =~ cheyenne*) then
cat >> ${jobfile} << EOFB
#PBS -j oe
#PBS -m ae
###PBS -m ae
#PBS -V
#PBS -q share
#PBS -N ${ICE_CASENAME}
Expand All @@ -52,7 +52,7 @@ EOFB
else if (${ICE_MACHINE} =~ hobart*) then
cat >> ${jobfile} << EOFB
#PBS -j oe
#PBS -m ae
###PBS -m ae
#PBS -V
#PBS -q short
#PBS -N ${ICE_CASENAME}
Expand Down

0 comments on commit 3422428

Please sign in to comment.