[Dart-dev] DART/branches Revision: 13098
dart at ucar.edu
dart at ucar.edu
Thu Apr 4 09:24:41 MDT 2019
thoar at ucar.edu
2019-04-04 09:24:41 -0600 (Thu, 04 Apr 2019)
49
Tracking the rma_trunk ... test script updates.
Index: DART/branches/qc8diags
===================================================================
--- DART/branches/qc8diags 2019-04-03 22:36:59 UTC (rev 13097)
+++ DART/branches/qc8diags 2019-04-04 15:24:41 UTC (rev 13098)
Property changes on: DART/branches/qc8diags
___________________________________________________________________
Modified: svn:mergeinfo
## -43,7 +43,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:13002-13089
+/DART/branches/rma_trunk:13002-13097
/DART/branches/rma_trunk_clamping:8786-8801
/DART/branches/rma_trunk_filename:8011-8157
/DART/branches/rma_trunk_get_state_fun:8568-8596
Index: DART/branches/qc8diags/assimilation_code/modules/assimilation/assim_tools_mod.f90
===================================================================
--- DART/branches/qc8diags/assimilation_code/modules/assimilation/assim_tools_mod.f90 2019-04-03 22:36:59 UTC (rev 13097)
+++ DART/branches/qc8diags/assimilation_code/modules/assimilation/assim_tools_mod.f90 2019-04-04 15:24:41 UTC (rev 13098)
Property changes on: DART/branches/qc8diags/assimilation_code/modules/assimilation/assim_tools_mod.f90
___________________________________________________________________
Modified: svn:mergeinfo
## -67,7 +67,7 ##
/DART/branches/rma_state_structure_test_dir/assimilation_code/modules/assimilation/assim_tools_mod.f90:9472-9676
/DART/branches/rma_state_structure_unit_test/assim_tools/assim_tools_mod.f90:9691-10268
/DART/branches/rma_state_structure_unit_test/assimilation_code/modules/assimilation/assim_tools_mod.f90:9691-10268
-/DART/branches/rma_trunk/assimilation_code/modules/assimilation/assim_tools_mod.f90:9634-9728,13002-13089
+/DART/branches/rma_trunk/assimilation_code/modules/assimilation/assim_tools_mod.f90:9634-9728,13002-13097
/DART/branches/rma_trunk_clamping/assimilation_code/modules/assimilation/assim_tools_mod.f90:8786-8801
/DART/branches/rma_trunk_filename/assim_tools/assim_tools_mod.f90:8011-8157
/DART/branches/rma_trunk_filename/assimilation_code/modules/assimilation/assim_tools_mod.f90:8011-8157
Index: DART/branches/qc8diags/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90
===================================================================
--- DART/branches/qc8diags/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90 2019-04-03 22:36:59 UTC (rev 13097)
+++ DART/branches/qc8diags/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90 2019-04-04 15:24:41 UTC (rev 13098)
Property changes on: DART/branches/qc8diags/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90
___________________________________________________________________
Modified: svn:mergeinfo
## -64,7 +64,7 ##
/DART/branches/rma_state_structure_test_dir/obs_kind/DEFAULT_obs_kind_mod.F90:9472-9676
/DART/branches/rma_state_structure_unit_test/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90:9691-10268
/DART/branches/rma_state_structure_unit_test/obs_kind/DEFAULT_obs_kind_mod.F90:9691-10268
-/DART/branches/rma_trunk/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90:9634-9728,13002-13089
+/DART/branches/rma_trunk/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90:9634-9728,13002-13097
/DART/branches/rma_trunk_clamping/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90:8786-8801
/DART/branches/rma_trunk_filename/assimilation_code/modules/observations/DEFAULT_obs_kind_mod.F90:8011-8157
/DART/branches/rma_trunk_filename/obs_kind/DEFAULT_obs_kind_mod.F90:8011-8157
Deleted: DART/branches/qc8diags/assimilation_code/programs/buildall.csh
===================================================================
--- DART/branches/qc8diags/assimilation_code/programs/buildall.csh 2019-04-03 22:36:59 UTC (rev 13097)
+++ DART/branches/qc8diags/assimilation_code/programs/buildall.csh 2019-04-04 15:24:41 UTC (rev 13098)
@@ -1,122 +0,0 @@
-#!/bin/csh
-#
-# DART software - Copyright UCAR. This open source software is provided
-# by UCAR, "as is", without charge, subject to all terms of use at
-# http://www.image.ucar.edu/DAReS/DART/DART_download
-#
-# DART $Id$
-#
-# build and test all the programs given in the list.
-# usage: [ -mpi | -nompi | -default ]
-#
-#----------------------------------------------------------------------
-
-set usingmpi=no
-
-if ( $#argv > 0 ) then
- if ( "$argv[1]" == "-mpi" ) then
- set usingmpi=yes
- else if ( "$argv[1]" == "-default" ) then
- set usingmpi=default
- else if ( "$argv[1]" == "-nompi" ) then
- set usingmpi=no
- else
- echo "Unrecognized argument to $0: $argv[1]"
- echo "Usage: $0 [ -mpi | -nompi | -default ]"
- echo " default is to run tests without MPI"
- exit -1
- endif
-endif
-
-# set the environment variable MPI to anything in order to enable the
-# MPI builds and tests. set the argument to the build scripts so it
-# knows which ones to build.
-if ( "$usingmpi" == "yes" ) then
- echo "Will be building with MPI enabled"
- set QUICKBUILD_ARG='-mpi'
-else if ( "$usingmpi" == "default" ) then
- echo "Will be building with the default MPI settings"
- set QUICKBUILD_ARG=''
-else if ( "$usingmpi" == "no" ) then
- echo "Will NOT be building with MPI enabled"
- set QUICKBUILD_ARG='-nompi'
-else
- echo "Internal error: unrecognized value of usingmpi; should not happen"
- exit -1
More information about the Dart-dev
mailing list