-
Notifications
You must be signed in to change notification settings - Fork 0
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
test_set_interior: clean up .travis.yml #18
Comments
It turns out that Travis is running an old version of gfortran (4.8.4) and I'm having trouble updating to something more recent while still supporting netCDF. This issue is reproducible on hobart:
An easy way to see the problem is to look at the variable
Meanwhile, just running
Although it's worth noting that NAG doesn't like something:
So maybe this is actually a Fortran issue that is being masked by some compilers? |
Per 4365a66 this was a problem with how nag handled netCDF fill values and is unrelated to the gfortran 4.8 problems. |
I think this is related to the gfortran bug Keith reported. We have an associate statement in
and if I try to print out
but something totally different from old GNU
|
So
See this toy repo for details on both points. |
I have opened #19 to reference the gfortran bug. As for |
Yesterday I noticed that travis tests weren't updating... I found a forum post and followed the recommendation of revoking rights then reinstating them, and that seemed to fix things. |
Any reason to continue to test with python 2?
Can we split up
run_all_tests.sh
to make it a little easier to find output from tests that fail? I'm thinking something likerun_all_infrastructure_tests.sh
to make sure all the python code worksrun_build_tests.sh
to make sure the build system worksrun_examples.sh
to make sure the "tests" that are just "run the model in different configurations" sanity checks workrun_unit_tests.sh
to run the unit testsrun_regression_tests.sh
to runcompute_cols
(currently the only true regression test, or will be once the baseline is committed to the repo)The text was updated successfully, but these errors were encountered: