-
Notifications
You must be signed in to change notification settings - Fork 142
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 multi-pe advection=none bug #664
Changes from 1 commit
dc1269b
60816b1
4c7987e
14c436e
80c407a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -938,9 +938,9 @@ EOF | |
|
||
# Use an existing ice_in file from the suite if it exists | ||
# to reduce time spend in parse_namelist | ||
set iceinfn = ../ice_in_save_${grid}${soptions} | ||
set skip_parse_namelist = spval | ||
if (${dosuite} == 1) then | ||
set iceinfn = ../ice_in_save_${grid}${soptions} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think I'd maybe prefer we put the saved namelists in a separate directory, so as to not clutter the suite's top level directory, but I don't have that strong of an opinion about it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These sit in the test suite directory and are deleted at the end of the test suite. You're right that it may be cleaner to put them in a separate directory, but I think we're OK for now. |
||
if (-e ${iceinfn}) then | ||
echo "use ${iceinfn}" | ||
cp ${iceinfn} ice_in | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/spend/spent/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixing.