/[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.9.2.4 by edhill, Fri Oct 3 05:12:18 2003 UTC revision 1.9.2.9 by edhill, Sat Oct 4 14:21:58 2003 UTC
# Line 11  usage() Line 11  usage()
11      echo "where possible OPTIONS are:"      echo "where possible OPTIONS are:"
12      echo "  (-help|-h)               print usage"      echo "  (-help|-h)               print usage"
13      echo "  (-mpi)                   use MPI input files"      echo "  (-mpi)                   use MPI input files"
14        echo "  (-ieee|-noieee)          if possible, use IEEE compiler flags"
15      echo "  (-optfile=|-of=)STRING   list of optfiles to use"      echo "  (-optfile=|-of=)STRING   list of optfiles to use"
16      echo "  (-a|-addr)STRING         list of email recipients"      echo "  (-a|-addr)STRING         list of email recipients"
17      echo "                             (DEF=\"edhill@mitgcm.org\")"      echo "                             (DEF=\"edhill@mitgcm.org\")"
# Line 18  usage() Line 19  usage()
19      echo "                             (DEF=\"\" which builds all)"      echo "                             (DEF=\"\" which builds all)"
20      echo "  (-b|-bash)STRING         location of \"bash\" executable"      echo "  (-b|-bash)STRING         location of \"bash\" executable"
21      echo "                             (DEF=\"\" for \"/bin/bash\")"      echo "                             (DEF=\"\" for \"/bin/bash\")"
22      echo "  (-c|-command)STRING      command to run"      echo "  (-command)STRING         command to run"
23      echo "                             (DEF=\"make output.txt\")"      echo "                             (DEF=\"make output.txt\")"
24      echo "  (-m|-make)STRING         command to use for \"make\""      echo "  (-m|-make)STRING         command to use for \"make\""
25      echo "                             (DEF=\"make\")"      echo "                             (DEF=\"make\")"
26        echo "  (-clean)                 *ONLY* run \"make CLEAN\""
27      echo "  (-quick|-q)              same as \"-nogenmake -noclean -nodepend\""      echo "  (-quick|-q)              same as \"-nogenmake -noclean -nodepend\""
28      echo "  (-nogenmake|-ng)         skip the genmake stage"      echo "  (-nogenmake|-ng)         skip the genmake stage"
29      echo "  (-noclean|-nc)           skip the \"make clean\" stage"      echo "  (-noclean|-nc)           skip the \"make clean\" stage"
# Line 185  genmakemodel() Line 187  genmakemodel()
187          (          (
188              cd $1;              cd $1;
189              printf 'genmake ... ' 1>&2              printf 'genmake ... ' 1>&2
190              # ../../../tools/genmake -ieee -mods=../code > make.log 2>&1              command="$GENMAKE2  -ds -m $MAKE --mods=../code"
191              $GENMAKE2  -ds -m $MAKE --mods=../code "--optfile="$OPTFILE > make.log 2>&1              if test "x$OPTFILE" != xNONE ; then
192                    command="$command --optfile=$OPTFILE"
193                    # echo "  command=\"$command\""
194                fi
195                if test "x$IEEE" != x ; then
196                    command="$command --ieee=$IEEE"
197                fi
198                $command > make.log 2>&1
199              RETVAL=$?              RETVAL=$?
200              for i in gm_state gm_optfile gm_local Makefile ; do              for i in genmake_state genmake_optfile genmake_local Makefile ; do
201                  if test -r $i ; then                  if test -r $i ; then
202                      cp $i $CDIR                      cp $i $CDIR
203                  fi                  fi
# Line 383  $0 [-help] [-quick] [-verbose] dir1 [dir Line 392  $0 [-help] [-quick] [-verbose] dir1 [dir
392   -debug     Produce even more output which will mean nothing to most   -debug     Produce even more output which will mean nothing to most
393   -force     Do "make CLEAN" before compiling. This forces a complete rebuild.   -force     Do "make CLEAN" before compiling. This forces a complete rebuild.
394   -clean     Do "make CLEAN" after compiling and testing.   -clean     Do "make CLEAN" after compiling and testing.
  -noieee    By default, $0 uses the -ieee option for genmake. This turns it off.  
395   -cleanup   Aggresively removes all model output, executables and object files   -cleanup   Aggresively removes all model output, executables and object files
396              and then exits. Use with care.              and then exits. Use with care.
397    
# Line 416  clean=0 Line 424  clean=0
424  expts=''  expts=''
425  # ieee=1  # ieee=1
426    
427    IEEE=
428    if test "x$MITGCM_IEEE" != x ; then
429        IEEE=$MITGCM_IEEE
430    fi
431    
432    
433  CLEANUP=f  CLEANUP=f
434  QUICK=f  QUICK=f
435  NOGENMAKE=f  NOGENMAKE=f
# Line 423  NOCLEAN=f Line 437  NOCLEAN=f
437  NODEPEND=f  NODEPEND=f
438    
439  BASH=  BASH=
440  OPTFILES=  OPTFILE=NONE
441  ADDRESSES=  ADDRESSES=
442  TESTDIRS=  TESTDIRS=
443  MPACKDIR="../tools/mpack-1.6"  MPACKDIR="../tools/mpack-1.6"
# Line 452  for ac_option ; do Line 466  for ac_option ; do
466              usage ;;              usage ;;
467                    
468          -optfile | --optfile | -of | --of)          -optfile | --optfile | -of | --of)
469              ac_prev=OPTFILES ;;              ac_prev=OPTFILE ;;
470          -optfile=* | --optfile=* | -of=* | --of=*)          -optfile=* | --optfile=* | -of=* | --of=*)
471              OPTFILES=$ac_optarg ;;              OPTFILE=$ac_optarg ;;
472                    
473          -addr | --addr | -a | --a)          -addr | --addr | -a | --a)
474              ac_prev=ADDRESSES ;;              ac_prev=ADDRESSES ;;
# Line 493  for ac_option ; do Line 507  for ac_option ; do
507          -nodepend | --nodepend | -nd | --nd)          -nodepend | --nodepend | -nd | --nd)
508              NODEPEND=t ;;              NODEPEND=t ;;
509    
510          -mpi) MPI=t ;;          -mpi) MPI=true ;;
511    
512            -ieee) IEEE=true ;;
513            -noieee) IEEE= ;;
514    
515          -verbose) verbose=2 ;;          -verbose) verbose=2 ;;
516          -debug) debug=1 ;;          -debug) debug=1 ;;
         -clean) clean=1 ;;  
517          -quiet) verbose=0 ;;          -quiet) verbose=0 ;;
518    
519          -*)          -*)
# Line 523  if test "x$TESTDIRS" = x ; then Line 540  if test "x$TESTDIRS" = x ; then
540      TESTDIRS=`scandirs`      TESTDIRS=`scandirs`
541  fi  fi
542    
543  if test "x$OPTFILES" = x ; then  if test "x$OPTFILE" = xNONE -a "x$MITGCM_OF" != x ; then
544      OPTFILES=$MITGCM_OF      OPTFILE=$MITGCM_OF
 fi  
 if test "x$OPTFILES" = x ; then  
     echo "Error: please specify an optfile using either the command-line or"  
     echo "  the MITGCM_OF environment variable.  Also, examples are located "  
     echo "  in \$ROOTDIR/tools/build_options"  
     exit 1  
545  fi  fi
546    
547  echo "OK"  echo "OK"
# Line 571  EOF Line 582  EOF
582    
583  NDIR=0  NDIR=0
584    
585  #  For each optfile...  if test "x$OPTFILE" != xNONE ; then
586  for OPTFILE in $OPTFILES ; do      if test -r $OPTFILE ; then
587            OPTFILE=`pwd`"/$OPTFILE"
     OPTFILE=`pwd`"/$OPTFILE"  
     if test ! -r $OPTFILE ; then  
         echo "Error: can't read optfile \"$OPTFILE\""  
         exit 1  
588      fi      fi
589      echo  fi
590      echo "OPTFILE=$OPTFILE" >> $SUMMARY  echo
591      echo >> $SUMMARY  echo "OPTFILE=$OPTFILE" >> $SUMMARY
592        echo >> $SUMMARY
     #  ...and each test directory...  
     for dir in $TESTDIRS ; do  
   
         #  Cleanup only!  
         if test "x$CLEANUP" = xt ; then  
             if test -r $dir/build/Makefile ; then  
                 ( cd $dir/build ; make CLEAN )  
             fi  
             if test -r $dir/input/Makefile ; then  
                 ( cd $dir/input ; make CLEAN )  
             fi  
             continue  
         fi  
593    
594          #  Verify that the testdir exists and contains previous  #  ...and each test directory...
595          #  results in the correct location--or skip this directory!  for dir in $TESTDIRS ; do
596          if test ! -r $dir"/results/output.txt" ; then      
597              echo      #  Cleanup only!
598              echo "can't read \"$dir/results/output.txt\" -- skipping $dir"      if test "x$CLEANUP" = xt ; then
599              echo          if test -r $dir/build/Makefile ; then
600              continue              ( cd $dir/build ; make CLEAN )
601          fi          fi
602            if test -r $dir/input/Makefile ; then
603          #  Is this an MPI run?              ( cd $dir/input ; make CLEAN )
         if test "x$MPI" = xt ; then  
             if test ! -r $dir"/code/CPP_EEOPTIONS.h_mpi" -o ! -r $dir"/code/SIZE.h_mpi" ; then  
                 echo | tee -a $SUMMARY  
                 echo "can't read \"$dir/code/CPP_EEOPTIONS.h_mpi\" or \"$dir/code/SIZE.h_mpi\"" \  
                     | tee -a $SUMMARY  
                 continue  
             else  
                 cmp $dir"/code/CPP_EEOPTIONS.h_mpi" $dir"/code/CPP_EEOPTIONS.h"  
                 RETVAL=$?  
                 if test "x$RETVAL" != x0 ; then  
                     cp $dir"/code/CPP_EEOPTIONS.h_mpi" $dir"/code/CPP_EEOPTIONS.h"  
                 fi  
                 cmp $dir"/code/SIZE.h_mpi" $dir"/code/SIZE.h"  
                 RETVAL=$?  
                 if test "x$RETVAL" != x0 ; then  
                     cp $dir"/code/SIZE.h_mpi" $dir"/code/SIZE.h"  
                 fi  
             fi  
         else  
             if test -r $dir"/code/CPP_EEOPTIONS.h_nompi" ; then  
                 cmp $dir"/code/CPP_EEOPTIONS.h_nompi" $dir"/code/CPP_EEOPTIONS.h"  
                 RETVAL=$?  
                 if test "x$RETVAL" != x0 ; then  
                     cp $dir"/code/CPP_EEOPTIONS.h_nompi" $dir"/code/CPP_EEOPTIONS.h"  
                 fi  
             fi  
             if test -r $dir"/code/SIZE.h_nompi" ; then  
                 cmp $dir"/code/SIZE.h_nompi" $dir"/code/SIZE.h"  
                 RETVAL=$?  
                 if test "x$RETVAL" != x0 ; then  
                     cp $dir"/code/SIZE.h_nompi" $dir"/code/SIZE.h"  
                 fi  
             fi  
604          fi          fi
605            continue
606        fi
607    
608          #  Create an output dir for each OPTFILE/tdir combination      #  Verify that the testdir exists and contains previous
609          CDIR=$DRESULTS"/"$DRESULTS"_"$NDIR      #  results in the correct location--or skip this directory!
610          mkdir $CDIR      if test ! -r $dir"/results/output.txt" ; then
611          CDIR=`pwd`"/$CDIR"          echo "can't read \"$dir/results/output.txt\" -- skipping $dir"
612            continue
613          #  ...configue, make, run, and compare the output.      fi
         echo "-------------------------------------------------------------------------------"  
         echo  
         echo "Experiment:  $dir"  
         echo  
         unset genmake makedepend make run  
         results='-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --'  
614    
615          if [ -r $dir/build ]; then      echo "-------------------------------------------------------------------------------"
616              seperatebuilddir=1      echo
617              builddir=build      echo "Experiment:  $dir"
618              rundir=build      echo
619              ( cd $dir/build; ln -sf ../input/* . )      unset genmake makedepend make run
620          else      results='-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --'
             seperatebuilddir=0  
             builddir=input  
             rundir=input  
         fi  
621    
622          if test "x$CLEANUP" = xt ; then      if [ -r $dir/build ]; then
623              makeclean $dir/$builddir          seperatebuilddir=1
624          else          builddir=build
625              genmakemodel $dir/$builddir && genmake=Y \          rundir=build
626                  && makeclean $dir/$builddir \          ( cd $dir/build; ln -sf ../input/* . )
627                  && makedependmodel $dir/$builddir && makedepend=Y \      else
628                  && makemodel $dir/$builddir && make=Y \          seperatebuilddir=0
629                  && linkdata $seperatebuilddir $dir/$rundir \          builddir=input
630                  && runmodel $dir/$builddir && run=Y \          rundir=input
631                  && results=`testoutput $dir $rundir`      fi
632        
633        CODE_DIR=$dir/code
634        BUILD_DIR=$dir/$builddir
635        MPI_FILES="CPP_EEOPTIONS.h_mpi SIZE.h_mpi"
636        NOMPI_FILES="CPP_EEOPTIONS.h_nompi SIZE.h_nompi"
637    
638        #  Is this an MPI run?
639        if test "x$MPI" = xt ; then
640            FILES=$MPI_FILES
641        else
642            FILES=$NOMPI_FILES
643        fi
644        
645        #  Check to see that we have the files
646        have_files=t
647        for i in $FILES ; do
648            if test ! -r $CODE_DIR/$i ; then
649                echo "Warning: can't read file $CODE_DIR/$i"
650                have_files=f
651          fi          fi
652        done
653          echo      if test "x$have_files" != xt -a "x$MPI" = xt ; then
654          formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \          echo "Skipping $dir due to lack of input files (see above warning)"
655              ${run:-N} $results          continue
656          echo      fi
657          formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \      
658              ${run:-N} $results >> $SUMMARY      #  If we have the $FILES and they differ, copy the $FILES to $BUILD_DIR
659          echo "fresults='" > $CDIR"/summary.txt"      if test "x$have_files" = xt ; then
660          formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \          for i in $FILES ; do
661              ${run:-N} $results >> $CDIR"/summary.txt"              cmp $CODE_DIR/$i $BUILD_DIR/$i > /dev/null 2>&1
         echo "'" >> $CDIR"/summary.txt"  
         echo "MACH='$MACH'" >> $CDIR"/summary.txt"  
         echo "UNAMEA='$UNAMEA'" >> $CDIR"/summary.txt"  
         echo "DATE='$DATE'" >> $CDIR"/summary.txt"  
         echo "tdir='$dir'" >> $CDIR"/summary.txt"  
   
         (  
             cd $DRESULTS  
             tar -cf $NDIR".tar" $DRESULTS"_"$NDIR > /dev/null 2>&1  
             gzip $NDIR".tar"  
         )  
   
         if test "x$ADDRESSES" = xNONE -o "x$ADDRESSES" = x ; then  
             echo "No mail sent"  
         else  
             $MPACK -s MITgcm-test -m 1000000 $DRESULTS"/"$NDIR".tar.gz" $ADDRESSES  
662              RETVAL=$?              RETVAL=$?
663              if test "x$RETVAL" != x0 ; then              if test "x$RETVAL" != x0 ; then
664                  echo "Warning: \"$MPACK\" failed -- please contact <edhill@mitgcm.org>"                  cp $CODE_DIR/$i $BUILD_DIR/$i
             else  
                 rm -f $DRESULTS"/"$NDIR".tar*"  
665              fi              fi
666            done
667        fi
668        
669        #  Create an output dir for each OPTFILE/tdir combination
670        CDIR=$DRESULTS"/"$DRESULTS"_"$NDIR
671        mkdir $CDIR
672        CDIR=`pwd`"/$CDIR"
673        
674        if test "x$CLEANUP" = xt ; then
675            makeclean $dir/$builddir
676        else
677            genmakemodel $dir/$builddir && genmake=Y \
678                && makeclean $dir/$builddir \
679                && makedependmodel $dir/$builddir && makedepend=Y \
680                && makemodel $dir/$builddir && make=Y \
681                && linkdata $seperatebuilddir $dir/$rundir \
682                && runmodel $dir/$builddir && run=Y \
683                && results=`testoutput $dir $rundir`
684        fi
685        
686        echo
687        formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \
688            ${run:-N} $results
689        echo
690        formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \
691            ${run:-N} $results >> $SUMMARY
692        echo "fresults='" > $CDIR"/summary.txt"
693        formatresults $dir ${genmake:-N} ${makedepend:-N} ${make:-N} \
694            ${run:-N} $results >> $CDIR"/summary.txt"
695        echo "'" >> $CDIR"/summary.txt"
696        echo "MACH='$MACH'" >> $CDIR"/summary.txt"
697        echo "UNAMEA='$UNAMEA'" >> $CDIR"/summary.txt"
698        echo "DATE='$DATE'" >> $CDIR"/summary.txt"
699        echo "tdir='$dir'" >> $CDIR"/summary.txt"
700        
701        (
702            cd $DRESULTS
703            tar -cf $NDIR".tar" $DRESULTS"_"$NDIR > /dev/null 2>&1
704            gzip $NDIR".tar"
705        )
706        
707        if test "x$ADDRESSES" = xNONE -o "x$ADDRESSES" = x ; then
708            echo "No mail sent"
709        else
710            $MPACK -s MITgcm-test -m 1000000 $DRESULTS"/"$NDIR".tar.gz" $ADDRESSES
711            RETVAL=$?
712            if test "x$RETVAL" != x0 ; then
713                echo "Warning: \"$MPACK\" failed -- please contact <edhill@mitgcm.org>"
714            else
715                rm -f $DRESULTS"/"$NDIR".tar*"
716          fi          fi
717        fi
718    
719          NDIR=$(( $NDIR + 1 ))      echo "-------------------------------------------------------------------------------"
720                
721      done      NDIR=$(( $NDIR + 1 ))
722        
723  done  done
724    
725  rm tmp_cmpnum.f a.out  rm tmp_cmpnum.f a.out

Legend:
Removed from v.1.9.2.4  
changed lines
  Added in v.1.9.2.9

  ViewVC Help
Powered by ViewVC 1.1.22