[Dart-dev] DART/branches Revision: 13019

dart at ucar.edu dart at ucar.edu
Mon Mar 18 17:23:35 MDT 2019


thoar at ucar.edu
2019-03-18 17:23:34 -0600 (Mon, 18 Mar 2019)
214
Tests work.
Support for scale/offset moved to variable 'E', which is not used
by test_cf_conventions or test_read_write_restarts.
quickbuild.csh improved to build the required netCDF files
and builds mpi targets.




Deleted: DART/branches/recam/developer_tests/io/work/broken.mkmf_test_cf_conventions
===================================================================
--- DART/branches/recam/developer_tests/io/work/broken.mkmf_test_cf_conventions	2019-03-18 23:04:16 UTC (rev 13018)
+++ DART/branches/recam/developer_tests/io/work/broken.mkmf_test_cf_conventions	2019-03-18 23:23:34 UTC (rev 13019)
@@ -1,65 +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$
-#
-# usage: mkmf_test_cf_conventions [ -mpi | -nompi ]
-#
-# without any args, builds test_cf_conventions without mpi libraries, and it will run
-# as a normal executable. if -mpi is given, it will be compiled with the mpi
-# libraries and can run with multiple cooperating processes.
-
-if ( $#argv > 0 ) then
-  if ("$argv[1]" == "-mpi") then
-    setenv usingmpi 1
-  else if ("$argv[1]" == "-nompi") then
-    setenv usingmpi 0
-  else
-    echo "Unrecognized argument to mkmf_test_cf_conventions: $argv[1]"
-    echo "Usage: mkmf_test_cf_conventions [ -mpi | -nompi ]"
-    echo " default is to generate a Makefile without MPI support."
-    exit -1
-  endif
-else
-  setenv usingmpi 0
-endif
-
-
-# make a backup copy of the path_names file, and then use
-# sed to make sure it includes either the non-mpi subroutines,
-# or the subroutines which really call mpi.
-cp -f path_names_test_cf_conventions path_names_test_cf_conventions.back
-
-if ( $usingmpi ) then
-
-  echo "Making Makefile with MPI"
-  touch using_mpi_for_test_cf_conventions
-  sed -e 's;/null_mpi_util;/mpi_util;' path_names_test_cf_conventions.back >! path_names_test_cf_conventions
-
-  setenv wrapper_arg -w
-
-else
-
-  echo "Making Makefile without MPI"
-  rm -f using_mpi_for_test_cf_conventions
-  sed -e 's;/mpi_util;/null_mpi_util;' path_names_test_cf_conventions.back >! path_names_test_cf_conventions
-  setenv wrapper_arg ""
-
-endif
-
-# remove temp file and now really call mkmf to generate makefile
-rm -f path_names_test_cf_conventions.back
-
-../../../build_templates/mkmf -p test_cf_conventions -t ../../../build_templates/mkmf.template   \
-        -a "../../.." ${wrapper_arg} path_names_test_cf_conventions
-
-exit $status
-
-# <next few lines under version control, do not edit>
-# $URL$
-# $Revision$
-# $Date$
-

Deleted: DART/branches/recam/developer_tests/io/work/broken.mkmf_test_read_write_restarts
===================================================================
--- DART/branches/recam/developer_tests/io/work/broken.mkmf_test_read_write_restarts	2019-03-18 23:04:16 UTC (rev 13018)
+++ DART/branches/recam/developer_tests/io/work/broken.mkmf_test_read_write_restarts	2019-03-18 23:23:34 UTC (rev 13019)
@@ -1,65 +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$
-#
-# usage: mkmf_test_read_write_restarts [ -mpi | -nompi ]
-#
-# without any args, builds test_read_write_restarts without mpi libraries, and it will run
-# as a normal executable. if -mpi is given, it will be compiled with the mpi
-# libraries and can run with multiple cooperating processes.
-
-if ( $#argv > 0 ) then
-  if ("$argv[1]" == "-mpi") then
-    setenv usingmpi 1
-  else if ("$argv[1]" == "-nompi") then
-    setenv usingmpi 0
-  else
-    echo "Unrecognized argument to mkmf_test_read_write_restarts: $argv[1]"
-    echo "Usage: mkmf_test_read_write_restarts [ -mpi | -nompi ]"
-    echo " default is to generate a Makefile without MPI support."
-    exit -1
-  endif


More information about the Dart-dev mailing list