[Dart-dev] DART/branches Revision: 12246

dart at ucar.edu dart at ucar.edu
Wed Dec 27 09:32:16 MST 2017


thoar at ucar.edu
2017-12-27 09:32:16 -0700 (Wed, 27 Dec 2017)
46
updating to be consistent with the rma_trunk




Index: DART/branches/cesm_clm
===================================================================
--- DART/branches/cesm_clm	2017-12-27 16:30:52 UTC (rev 12245)
+++ DART/branches/cesm_clm	2017-12-27 16:32:16 UTC (rev 12246)

Property changes on: DART/branches/cesm_clm
___________________________________________________________________
Modified: svn:mergeinfo
## -34,7 +34,7 ##
 /DART/branches/rma_sprint:8095-8166
 /DART/branches/rma_state_structure_test_dir:9472-9676
 /DART/branches/rma_state_structure_unit_test:9691-10268
-/DART/branches/rma_trunk:12108-12199
+/DART/branches/rma_trunk:12108-12245
 /DART/branches/rma_trunk_clamping:8786-8801
 /DART/branches/rma_trunk_filename:8011-8157
 /DART/branches/rma_trunk_get_state_fun:8568-8596
Modified: DART/branches/cesm_clm/assimilation_code/modules/utilities/fixsystem
===================================================================
--- DART/branches/cesm_clm/assimilation_code/modules/utilities/fixsystem	2017-12-27 16:30:52 UTC (rev 12245)
+++ DART/branches/cesm_clm/assimilation_code/modules/utilities/fixsystem	2017-12-27 16:32:16 UTC (rev 12246)
@@ -73,7 +73,7 @@
       echo "  or   $0 pgf90 "
       echo "  etc."
       exit 1
-    elif [ "$1" = gfortran ]; then
+    elif ([ "$1" = gfortran ] || [ "$1" = nagfor ]); then
       export todo=out
     else
       export todo=in

Modified: DART/branches/cesm_clm/developer_tests/location/location_test.f90
===================================================================
--- DART/branches/cesm_clm/developer_tests/location/location_test.f90	2017-12-27 16:30:52 UTC (rev 12245)
+++ DART/branches/cesm_clm/developer_tests/location/location_test.f90	2017-12-27 16:32:16 UTC (rev 12246)
@@ -9,7 +9,8 @@
 ! Simple test program to exercise annulus location module.
 
 use     types_mod, only : r8
-use utilities_mod, only : open_file, close_file
+use utilities_mod, only : open_file, close_file, initialize_utilities, &
+                          finalize_utilities
 use  location_mod
 
 implicit none
@@ -25,6 +26,8 @@
 real(r8)            :: loc2_val, lon, lat
 character(len=102)  :: testbuf
 
+call initialize_utilities('location_test')
+
 print *, ''
 print *, 'reading in 6 locations to use in distance tests:'
 do i = 1, 6
@@ -169,6 +172,8 @@
 call close_file(iunit1)
 call close_file(iunit2)
 
+call finalize_utilities()
+
 end program location_test
 
 ! <next few lines under version control, do not edit>

Modified: DART/branches/cesm_clm/developer_tests/location/location_test2.f90
===================================================================
--- DART/branches/cesm_clm/developer_tests/location/location_test2.f90	2017-12-27 16:30:52 UTC (rev 12245)
+++ DART/branches/cesm_clm/developer_tests/location/location_test2.f90	2017-12-27 16:32:16 UTC (rev 12246)
@@ -10,7 +10,8 @@
 
 use location_mod
 use types_mod,     only : r8
-use utilities_mod, only : get_unit, error_handler, E_ERR
+use utilities_mod, only : get_unit, error_handler, E_ERR, &
+                          initialize_utilities, finalize_utilities
 
 implicit none
 
@@ -24,6 +25,8 @@
 integer  :: iunit, i
 real(r8) :: loc2_val
 
+call initialize_utilities('location_test2')
+
 ! Open an output file
 iunit = get_unit()
 open(iunit, file = 'location_test_file')
@@ -56,6 +59,8 @@
 
 close(iunit)
 
+call finalize_utilities()
+
 end program location_test2
 
 ! <next few lines under version control, do not edit>

Modified: DART/branches/cesm_clm/developer_tests/location/location_test3.f90
===================================================================
--- DART/branches/cesm_clm/developer_tests/location/location_test3.f90	2017-12-27 16:30:52 UTC (rev 12245)
+++ DART/branches/cesm_clm/developer_tests/location/location_test3.f90	2017-12-27 16:32:16 UTC (rev 12246)


More information about the Dart-dev mailing list