/[MITgcm]/MITgcm/verification/testreport
ViewVC logotype

Diff of /MITgcm/verification/testreport

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.2 by edhill, Mon Sep 1 16:50:27 2003 UTC revision 1.8 by edhill, Tue Sep 16 17:46:52 2003 UTC
# Line 10  usage() Line 10  usage()
10      echo      echo
11      echo "where possible OPTIONS are:"      echo "where possible OPTIONS are:"
12      echo "  (-help|-h)               print usage"      echo "  (-help|-h)               print usage"
13      echo "  (-optfile=|-of=)STRING   list of genmake2 \"optfiles\""      echo "  (-mpi)                   use MPI input files"
14        echo "  (-optfile=|-of=)STRING   list of optfiles to use"
15      echo "  (-a|-addr)STRING         list of email recipients"      echo "  (-a|-addr)STRING         list of email recipients"
16      echo "  (-t|-tdir)STRING         list of \"test\" dirs"      echo "                             (DEF=\"edhill@mitgcm.org\")"
17        echo "  (-t|-tdir)STRING         list of test dirs to use"
18        echo "                             (DEF=\"\" which builds all)"
19        echo "  (-b|-bash)STRING         location of \"bash\" executable"
20        echo "                             (DEF=\"\" for \"/bin/bash\")"
21        echo "  (-c|-command)STRING      command to run"
22        echo "                             (DEF=\"make output.txt\")"
23        echo "  (-m|-make)STRING         command to use for \"make\""
24        echo "                             (DEF=\"make\")"
25        echo
26        echo "and where STRING follows a whitespace-delimited format"
27        echo "such as:"
28        echo "  -t 'exp0 exp2 exp3' "
29        echo "  -addr='abc@123.com testing@home.org'"
30      echo      echo
31      exit 1      exit 1
32  }  }
# Line 29  build_mpack() Line 43  build_mpack()
43              exit 1              exit 1
44          fi          fi
45          echo -n "building mpack...  "          echo -n "building mpack...  "
46          ( cd $MPACKDIR && ./configure && make ) > build_mpack.out 2>&1          ( cd $MPACKDIR && ./configure && $MAKE ) > build_mpack.out 2>&1
47          RETVAL=$?          RETVAL=$?
48          if test "x$RETVAL" != x0 ; then          if test "x$RETVAL" != x0 ; then
49              echo              echo
# Line 160  testoutput() Line 174  testoutput()
174  genmakemodel()  genmakemodel()
175  {  {
176      # genmakemodel directory      # genmakemodel directory
177      GENMAKE2="../../../tools/genmake2"      GENMAKE2="$BASH ../../../tools/genmake2"
178      (      (
179          cd $1;          cd $1;
180          printf 'genmake ... ' 1>&2          printf 'genmake ... ' 1>&2
# Line 188  makeclean() Line 202  makeclean()
202      # makeclean directory      # makeclean directory
203      (      (
204          cd $1;          cd $1;
205          rm -f output.txt          if test -e output.txt ; then
206                rm -f output.txt
207            fi
208          printf 'make CLEAN ... ' 2>&1          printf 'make CLEAN ... ' 2>&1
209          if test -r Makefile ; then          if test -r Makefile ; then
210              make CLEAN >> make.log 2>&1              $MAKE CLEAN >> make.log 2>&1
211              RETVAL=$?              RETVAL=$?
212              if test "x$RETVAL" != x0 ; then              if test "x$RETVAL" != x0 ; then
213                  tail make.log                  tail make.log
# Line 211  makedependmodel() Line 227  makedependmodel()
227      (      (
228          cd $1;          cd $1;
229          printf 'make depend ... ' 1>&2          printf 'make depend ... ' 1>&2
230          make depend >> make.log 2>&1          $MAKE depend >> make.log 2>&1
231          RETVAL=$?          RETVAL=$?
232          if test "x$RETVAL" != x0 ; then          if test "x$RETVAL" != x0 ; then
233              tail make.log              tail make.log
# Line 231  makemodel() Line 247  makemodel()
247          cd $1;          cd $1;
248          if test -r Makefile ; then          if test -r Makefile ; then
249              printf 'make ... ' 1>&2              printf 'make ... ' 1>&2
250              make >> make.log 2>&1              $MAKE >> make.log 2>&1
251              RETVAL=$?              RETVAL=$?
252              if test "x$RETVAL" != x0 ; then              if test "x$RETVAL" != x0 ; then
253                  tail make.log                  tail make.log
# Line 257  linkdata() Line 273  linkdata()
273    
274  runmodel()  runmodel()
275  {  {
276      # runmodel directory exe      # runmodel directory
277      #      #
278      #  runs the model "exe" in "directory" (exe is relative to directory)      #  runs "$COMMAND" in "directory"
279        #  (where "$COMMAND" is relative to "directory")
280      (      (
281          cd $1          cd $1
282          if [ -x $2 ]; then          printf 'runmodel: ' 1>&2
283              if [ $quick -eq 0 ]; then          # make output.txt
284                  rm -f output.txt          $COMMAND
285              fi          RETVAL=$?
286              printf 'runmodel: ' 1>&2          if test "x$RETVAL" = x0 ; then
287              make output.txt              cp output.txt $CDIR"/output.txt"
288              RETVAL=$?              return 0
289              if test "x$RETVAL" = x0 ; then          else
290                  cp output.txt $CDIR"/output.txt"              return 1
                 return 0  
             else  
                 return 1  
             fi  
291          fi          fi
292      )      )
293  }  }
# Line 315  EOFA Line 328  EOFA
328          return 0          return 0
329      else      else
330          echo          echo
331          echo "createcodelet: failed to compile codelet" | tee          echo "createcodelet: failed to compile codelet"
332          exit 1          exit 1
333      fi      fi
334  }  }
# Line 383  scandirs() Line 396  scandirs()
396  #  Default properties  #  Default properties
397  debug=0  debug=0
398  verbose=1  verbose=1
 quick=0  
399  clean=0  clean=0
 ieee=1  
400  expts=''  expts=''
401    # ieee=1
402    # quick=0
403    
404    BASH=
405  OPTFILES=  OPTFILES=
406  ADDRESSES=edhill@mitgcm.org  ADDRESSES=edhill@mitgcm.org
407  TESTDIRS=  TESTDIRS=
408  MPACKDIR="../tools/mpack-1.6"  MPACKDIR="../tools/mpack-1.6"
409  MPACK="$MPACKDIR/mpack"  MPACK="$MPACKDIR/mpack"
410    COMMAND="make output.txt"
411    MAKE=make
412    MPI=f
413    
414  echo -n "parsing options...  "  echo -n "parsing options...  "
415    
# Line 428  for ac_option ; do Line 445  for ac_option ; do
445          -tdir=* | --tdir=*)          -tdir=* | --tdir=*)
446              TESTDIRS=$ac_optarg ;;              TESTDIRS=$ac_optarg ;;
447    
448          -quick) quick=1 ;;          -bash | --bash | -b | --b)
449                ac_prev=BASH ;;
450            -bash=* | --bash=*)
451                BASH=$ac_optarg ;;
452    
453            -command | --command | -c | --c)
454                ac_prev=COMMAND ;;
455            -command=* | --command=*)
456                COMMAND=$ac_optarg ;;
457    
458            -make | --make | -m | --m)
459                ac_prev=MAKE ;;
460            -make=* | --make=*)
461                MAKE=$ac_optarg ;;
462    
463            -mpi) MPI=t ;;
464          -verbose) verbose=2 ;;          -verbose) verbose=2 ;;
465          -debug) debug=1 ;;          -debug) debug=1 ;;
466          -clean) clean=1 ;;          -clean) clean=1 ;;
         -noieee) ieee=0 ;;  
467          -quiet) verbose=0 ;;          -quiet) verbose=0 ;;
468    
469          -*)          -*)
# Line 505  for OPTFILE in $OPTFILES ; do Line 536  for OPTFILE in $OPTFILES ; do
536            
537      #  ...and each test directory...      #  ...and each test directory...
538      for dir in $TESTDIRS ; do      for dir in $TESTDIRS ; do
539            
540            #  Verify that the testdir exists and contains previous
541            #  results in the correct location--or skip this directory!
542            if test ! -r $dir"/results/output.txt" ; then
543                echo | tee -a $SUMMARY
544                echo "can't read \"$dir/results/output.txt\" -- skipping $dir" \
545                    | tee -a $SUMMARY
546                continue
547            fi
548    
549            #  Is this an MPI run?
550            if test "x$MPI" = xt ; then
551                if test ! -r $dir"/code/CPP_EEOPTIONS.h_mpi" -o ! -r $dir"/code/SIZE.h_mpi" ; then
552                    echo | tee -a $SUMMARY
553                    echo "can't read \"$dir/code/CPP_EEOPTIONS.h_mpi\" or \"$dir/code/SIZE.h_mpi\"" \
554                        | tee -a $SUMMARY
555                    continue
556                else
557                    cp $dir"/code/CPP_EEOPTIONS.h_mpi" $dir"/code/CPP_EEOPTIONS.h"
558                    cp $dir"/code/SIZE.h_mpi" $dir"/code/SIZE.h"
559                fi
560            else
561                if test -r $dir"/code/CPP_EEOPTIONS.h_nompi" ; then
562                    cp $dir"/code/CPP_EEOPTIONS.h_nompi" $dir"/code/CPP_EEOPTIONS.h"
563                fi
564                if test -r $dir"/code/SIZE.h_nompi" ; then
565                    cp $dir"/code/SIZE.h_nompi" $dir"/code/SIZE.h"
566                fi
567            fi
568    
569          #  Create an output dir for each OPTFILE/tdir combination          #  Create an output dir for each OPTFILE/tdir combination
570          CDIR=$DRESULTS"/"$DRESULTS"_"$NDIR          CDIR=$DRESULTS"/"$DRESULTS"_"$NDIR
571          mkdir $CDIR          mkdir $CDIR
# Line 530  for OPTFILE in $OPTFILES ; do Line 590  for OPTFILE in $OPTFILES ; do
590              rundir=input              rundir=input
591          fi          fi
592    
         #  Verify that the testdir exists and contains previous  
         #  results in the correct location--or skip this directory!  
         if test ! -r $dir"/results/output.txt" ; then  
             echo | tee $SUMMARY  
             echo "can't read \"$dir/results/output.txt\" -- skipping $dir" \  
                 | tee $SUMMARY  
             continue  
         fi  
   
593          genmakemodel $dir/$builddir && genmake=Y \          genmakemodel $dir/$builddir && genmake=Y \
594              && makeclean $dir/$builddir \              && makeclean $dir/$builddir \
595              && makedependmodel $dir/$builddir && makedepend=Y \              && makedependmodel $dir/$builddir && makedepend=Y \
596              && makemodel $dir/$builddir && make=Y \              && makemodel $dir/$builddir && make=Y \
597              && linkdata $seperatebuilddir $dir/$rundir \              && linkdata $seperatebuilddir $dir/$rundir \
598              && runmodel $dir/$builddir mitgcmuv && run=Y \              && runmodel $dir/$builddir && run=Y \
599              && results=`testoutput $dir $rundir`              && results=`testoutput $dir $rundir`
600          echo          echo
601          formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \          formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.8

  ViewVC Help
Powered by ViewVC 1.1.22