| 10 | 
 { | 
 { | 
| 11 | 
     echo | 
     echo | 
| 12 | 
     echo "Usage:  $0 [OPTIONS]" | 
     echo "Usage:  $0 [OPTIONS]" | 
| 13 | 
     echo  | 
     echo | 
| 14 | 
     echo "where possible OPTIONS are:" | 
     echo "where possible OPTIONS are:" | 
| 15 | 
     echo "  (-help|-h)           print usage" | 
     echo "  (-help|-h)           print usage" | 
| 16 | 
     echo "  (-date |-d )PERIOD   run for PERIOD=\"YYYY_MM\"" | 
     echo "  (-date |-d )PERIOD   run for PERIOD=\"YYYY_MM\"" | 
| 17 | 
     echo "                         [def=\"$PERIOD\"]" | 
     echo "                         [def=\"$PERIOD\"]" | 
| 18 | 
     echo  | 
     echo | 
| 19 | 
     exit 1 | 
     exit 1 | 
| 20 | 
 } | 
 } | 
| 21 | 
  | 
  | 
| 85 | 
 color="#bbffdd" | 
 color="#bbffdd" | 
| 86 | 
 ncolor="#bbddff" | 
 ncolor="#bbddff" | 
| 87 | 
  | 
  | 
| 88 | 
 MACHINES="faulks meander lagoon harbor dickens danton aces" | 
 MACHINES="faulks meander aces acesgrid baudelaire dickens danton beagle harbor" | 
| 89 | 
 MACHINES="$MACHINES beagle columbia pleiades iblade rays solssrv solasrv sx8" | 
 MACHINES="$MACHINES pleiades iblade rays solasrv sx8" | 
| 90 | 
 MACHINES="$MACHINES bigred starp" | 
 MACHINES="$MACHINES trane dodongo dokdo stomp bigred" | 
| 91 | 
  | 
  | 
| 92 | 
 ( cd $INDIR ; ls -1 -t */summary.txt | sed 's/\/summary.txt//' ) > ./dir_all | 
 ( cd $INDIR ; ls -1 -t */summary.txt | sed 's/\/summary.txt//' ) > ./dir_all | 
| 93 | 
  | 
  | 
| 137 | 
  | 
  | 
| 138 | 
         ADJOINT= | 
         ADJOINT= | 
| 139 | 
         RESTART=0 | 
         RESTART=0 | 
| 140 | 
         NOI3E=0 | 
         FAST=0 | 
| 141 | 
  | 
         DVLP=0 | 
| 142 | 
         MTH=0 | 
         MTH=0 | 
| 143 | 
         UR4=0 | 
         UR4=0 | 
| 144 | 
         if test -r $dir/summary.txt ; then | 
         if test -r $dir/summary.txt ; then | 
| 145 | 
             comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null` | 
             comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null` | 
| 146 | 
             eval $comm | 
             eval $comm | 
| 147 | 
             RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt` | 
             RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt` | 
| 148 | 
             NOI3E=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt` | 
             FAST=`grep -c "^run: .*testreport.* '*-fast'*" $dir/summary.txt` | 
| 149 | 
  | 
             if test "x$FAST" = x0 ; then | 
| 150 | 
  | 
               FAST=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt` | 
| 151 | 
  | 
             fi | 
| 152 | 
  | 
             DVLP=`grep -c "^run: .*testreport.* '*-devel'*" $dir/summary.txt` | 
| 153 | 
             MTH=`grep -c "^run: .*testreport.* -mth " $dir/summary.txt` | 
             MTH=`grep -c "^run: .*testreport.* -mth " $dir/summary.txt` | 
| 154 | 
             UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt` | 
             UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt` | 
| 155 | 
             if test "x$UR4" = x0 ; then | 
             if test "x$UR4" = x0 ; then | 
| 169 | 
             yy=`echo $OPTFILE | grep -c '+mth$'` | 
             yy=`echo $OPTFILE | grep -c '+mth$'` | 
| 170 | 
             if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi | 
             if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi | 
| 171 | 
         fi | 
         fi | 
| 172 | 
         if test "x$NOI3E" = x1 ; then | 
         if test "x$FAST" = x1 ; then | 
| 173 | 
             OPTFILE="${OPTFILE}.noieee" | 
             OPTFILE="${OPTFILE}.fast" | 
| 174 | 
  | 
         fi | 
| 175 | 
  | 
         if test "x$DVLP" = x1 ; then | 
| 176 | 
  | 
             OPTFILE="${OPTFILE}.dvlp" | 
| 177 | 
         fi | 
         fi | 
| 178 | 
  | 
  | 
| 179 | 
         t_pass="--" | 
         t_pass="--" |