-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctest.ftn
45 lines (45 loc) · 1.32 KB
/
ctest.ftn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "w3macros.h"
!/ ------------------------------------------------------------------- /
SUBROUTINE CTEST
!/
!/ +-----------------------------------+
!/ | WAVEWATCH III NOAA/NCEP |
!/ | H. L. Tolman |
!/ | FORTRAN 90 |
!/ | Last update : 29-May-2009 |
!/ +-----------------------------------+
!/
!/ Copyright 2009 National Weather Service (NWS),
!/ National Oceanic and Atmospheric Administration. All rights
!/ reserved. WAVEWATCH III is a trademark of the NWS.
!/ No unauthorized use without permission.
!/
! 1. Purpose :
!
! This subroutine provides no other purpose than to provide a test
! routine to set up error capturing in the 'comp' script.
!
! 10. Source code :
!
!/ ------------------------------------------------------------------- /
IMPLICIT NONE
!
INTEGER IENT0, IENT1
!
! The next line MIGHT generate a warning, depending on the compiler
!
IENT1 = IENT0
!
! Activate this line to generate an error or warning
!
! IENT = 0
!
! Activate this line to generate an error
!
! IENT == 0
!
RETURN
!/
!/ End of CTEST ----------------------------------------------------- /
!/
END SUBROUTINE