forked from mom-ocean/MOM6
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Broke out testing into numerical_testing_type.F90
The helper type that shortens the testing lines will be needed by both the upcoming Recon1d type and MOM_remapping, so it makes sense to break the type out into a module. I've put this in framework/ but it is specifically a stand-alone module, not dependent on any infrastructure code.
- Loading branch information
Showing
3 changed files
with
379 additions
and
179 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
config_src/drivers/unit_tests/test_numerical_testing_type.F90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
program test_numerical_testing_type | ||
|
||
use numerical_testing_type, only : testing_type_unit_test | ||
|
||
if (testing_type_unit_test(.true.)) stop 1 | ||
|
||
end program test_numerical_testing_type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.