-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1378 from jedwards4b/funit_test_fix
Fix Fortran unit tests
- Loading branch information
Showing
4 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
list(APPEND drv_sources | ||
seq_timemgr_mod.F90 | ||
vertical_gradient_calculator_constant.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,19 @@ | ||
module seq_timemgr_mod | ||
|
||
! Stub for routines from seq_timemgr_mod that are needed by other modules built by the | ||
! unit tests. | ||
|
||
implicit none | ||
private | ||
|
||
public :: seq_timemgr_pause_active | ||
|
||
contains | ||
|
||
logical function seq_timemgr_pause_active() | ||
! Stub for seq_timemgr_pause_active - always returns .false. | ||
|
||
seq_timemgr_pause_active = .false. | ||
end function seq_timemgr_pause_active | ||
|
||
end module seq_timemgr_mod |
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
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