/[MITgcm]/mitgcm.org/scripts/check_outp
ViewVC logotype

Diff of /mitgcm.org/scripts/check_outp

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

revision 1.6 by jmc, Mon Apr 6 18:12:34 2009 UTC revision 1.31 by jmc, Tue Aug 23 18:14:10 2011 UTC
# Line 11  usage() Line 11  usage()
11  {  {
12      echo      echo
13      echo "Usage:  $0 [OPTIONS]"      echo "Usage:  $0 [OPTIONS]"
14      echo      echo
15      echo "where possible OPTIONS are:"      echo "where possible OPTIONS are:"
16      echo "  (-h|-help)            print usage"      echo "  (-h|-help)            print usage"
17      echo "  (-v|-verbose)         verbose mode"      echo "  (-v|-verbose)         verbose mode"
# Line 22  usage() Line 22  usage()
22      echo "                         [def=\"$FIRSTDAY\"]"      echo "                         [def=\"$FIRSTDAY\"]"
23      echo "  (-u |-upto )LASTDAY   until last day=\"YYYYMMDD\" (=selected period)"      echo "  (-u |-upto )LASTDAY   until last day=\"YYYYMMDD\" (=selected period)"
24      echo "                         [def=\"FIRSTDAY\"]"      echo "                         [def=\"FIRSTDAY\"]"
25        echo "  (-b |-before)BEFORE   compare with output from before \"YYYYMMDD\""
26        echo "                         (=previous period) [def=\"FIRSTDAY\"]"
27      echo "  (-o |-outp )OUTPFIL   output file (-1 removed when exit)"      echo "  (-o |-outp )OUTPFIL   output file (-1 removed when exit)"
28      echo "                         [def=\"$OUTPFIL\"]"      echo "                         [def=\"$OUTPFIL\"]"
29      echo "  (-n |-nldf )NBLDIFF   max number of diff lines to echo"      echo "  (-n |-nldf )NBLDIFF   max number of diff lines to echo"
30      echo "                         [def=\"$NBLDIFF\"]"      echo "                         [def=\"$NBLDIFF\"]"
31      echo "  (-a |-addr )ADDRESS   send summary to mail ADDRESS list"      echo "  (-a |-addr )ADDRESS   send summary to mail ADDRESS list"
32      echo "                         [def=\"$ADDRESS\"]"      echo "                         [def=\"$ADDRESS\"]"
33      echo      echo
34      exit 1      exit 1
35  }  }
36    
37    #  create list of results dir for one platform:
38    make_resdir_list()
39    {
40          if test $monthDir == 1 ; then
41            dir_list=`grep '.._'$mname ./dir_all`
42          else
43            dir_list=`( cd $INDIR ; ls -1 -t ../$PREV_P/??_*${mname}*/summary.txt 2> /dev/null | sed 's/\/summary.txt//' )`
44            #echo "dir_list='$dir_list'"
45          fi
46            for i in $dir_list ; do
47    
48                dir=$INDIR"/"$i
49                #--- get the opfile used to run testreport
50                OPTFILE=
51                if test -r $dir/summary.txt ; then
52                    comm=`grep 'OPTFILE=' $dir/summary.txt`
53                    eval $comm
54                fi
55                if test "x$OPTFILE" = x -a -r "$dir/genmake_state" ; then
56                    comm=`grep 'OPTFILE=' $dir/genmake_state 2>/dev/null`
57                    eval $comm
58                fi
59                if test "x$OPTFILE" = x ; then
60                    comm=`grep '^# OPTFILE=' $dir/*/Makefile* 2>/dev/null | head -1`
61                    comm=${comm##*#}
62                    eval $comm
63                fi
64                if test "x$OPTFILE" = x ; then
65                    OPTFILE="not_explicitly_specified"
66                else
67                    OPTFILE=${OPTFILE##*/}
68                fi
69                #--- case select test run by 1 user: get user who did run testreport
70                if test "x$sUser" != x ; then
71                    tUser=
72                    if test -f $dir/genmake_state ; then
73                       nn=`sed -n '/^# executed by:/=' $dir/genmake_state`
74                       if test "x$nn" != x ; then
75                         nn=`expr $nn + 1`
76                         tUser=`sed -n "$nn s/^# *// p" $dir/genmake_state | sed 's/@.*$//'`
77                       fi
78                    fi
79                    if test "x$tUser" = "x" ; then
80                       mkfile=`ls $dir/*/Makefile* 2>/dev/null | head -1`
81                       if test "x$mkfile" = 'x' ; then
82                         echo "no Makefile => discard test from: $i" | tee -a $OUTPFIL
83                         continue
84                       fi
85                       nn=`sed -n '/^# executed by:/=' $mkfile`
86                       if test "x$nn" != x ; then
87                         nn=`expr $nn + 1`
88                         tUser=`sed -n "$nn s/^# *// p" $mkfile | sed 's/@.*$//'`
89                       fi
90                    fi
91                    if test "x$tUser" = x ; then
92                         echo "no User found => discard test from: $i" | tee -a $OUTPFIL
93                         continue
94                    fi
95                    if test $tUser != $sUser ; then
96                       if test $dBug = 't' ; then
97                            echo "  discard test from: $i" | tee -a $OUTPFIL
98                       fi
99                       continue
100                    fi
101                fi
102    
103                ADJOINT=
104                RESTART=0
105                FAST=0
106                DVLP=0
107                MPI=0
108                MTH=0
109                UR4=0
110                if test -r $dir/summary.txt ; then
111                    comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null`
112                    eval $comm
113                    RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt`
114                    FAST=`grep -c "^run: .*testreport.* '*-fast'*" $dir/summary.txt`
115                    if test "x$FAST" = x0 ; then
116                       FAST=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt`
117                    fi
118                    DVLP=`grep -c "^run: .*testreport.* '*-devel'*" $dir/summary.txt`
119                    MPI=`grep -c "^run: .*testreport.* -mpi " $dir/summary.txt`
120                    if test "x$MPI" = x0 ; then
121                       MPI=`grep -c "^run: .*testreport.* -MPI " $dir/summary.txt`
122                    fi
123                    MTH=`grep -c "^run: .*testreport.* -mth" $dir/summary.txt`
124                    UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt`
125                    if test "x$UR4" = x0 ; then
126                       UR4=`grep -c "^run: .*testreport.* -ur4 " $dir/summary.txt`
127                    fi
128                fi
129                if test "x$ADJOINT" = xtrue ; then
130                    kind="adjoint" ; order='000'
131                elif test "x$RESTART" = x0 ; then
132                    kind="forward" ; order='001'
133                else
134                    kind="restart" ; order='002'
135                fi
136                if test "x$UR4" = x1 ; then
137                    OPTFILE="${OPTFILE}.use_r4"
138                fi
139                if test "x$MPI" = x1 ; then
140                    yy=`echo $OPTFILE | grep -c '+mpi'`
141                    if test $yy = 0 ; then OPTFILE="${OPTFILE}+mpi" ; fi
142                fi
143                if test "x$MTH" = x1 ; then
144                    yy=`echo $OPTFILE | grep -c '+mth$'`
145                    if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi
146                fi
147                if test "x$FAST" = x1 ; then
148                    OPTFILE="${OPTFILE}.fast"
149                fi
150                if test "x$DVLP" = x1 ; then
151                    OPTFILE="${OPTFILE}.dvlp"
152                fi
153                day=`echo $i   | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`
154                ttt=`echo $day | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`
155                day=`echo $ttt | sed -e 's|_| |g' |awk '{print $NF}'`
156    
157                if [ $day -lt $BEFORE ] ; then
158                    echo "$OPTFILE$order $day $OPTFILE $kind $i" >> ./plist
159                elif [ $day -ge $FIRSTDAY -a $day -le $LASTDAY ] ; then
160                    echo "$OPTFILE$order $day $OPTFILE $kind $i" >> ./slist
161                else
162                    if test $dBug = 't' ; then
163                       echo "discard day='$day' from: $i" | tee -a $OUTPFIL
164                    fi
165                fi
166    
167            done
168            if test $dBug = 't' ; then
169              if test $monthDir == 1 ; then
170                echo "---- current list (n=$monthDir) :" | tee -a $OUTPFIL
171                    cat ./slist | tee -a $OUTPFIL
172              fi
173              num1=`wc -l ./slist | awk '{print $1}'`
174              if test $num1 -gt 0 ; then
175              echo   ".... previous list (n=$monthDir):" | tee -a $OUTPFIL
176                    cat ./plist | tee -a $OUTPFIL | head -20
177              fi
178              echo "----" | tee -a $OUTPFIL
179            fi
180    }
181    
182    #--------------------------------------------------------------------------
183    # here starts the sequential part of the script:
184    
185  #CURR_PER=`date +%Y`"_"`date +%m`  #CURR_PER=`date +%Y`"_"`date +%m`
186  CURR_DAY=`date +%Y%m%d`  CURR_DAY=`date +%Y%m%d`
187  # defaults  # defaults
188  MACHINES='_All_'  MACHINES='_All_'
189  FIRSTDAY=$CURR_DAY  FIRSTDAY=$CURR_DAY
190  LASTDAY="30000000"  LASTDAY="30000000"
191    BEFORE="30000000"
192  OUTPFIL=`basename $0`'.log'  OUTPFIL=`basename $0`'.log'
193  NBLDIFF=5  NBLDIFF=5
194  ADDRESS='none'  ADDRESS='none'
195  dBug=f  dBug=f
196  sTime=`date`  sTime=`date`
197    #- to get case insensitive "ls" (and order of tested experiments)
198    export LC_ALL="en_US.UTF-8"
199    
200  #  Parse options  #  Parse options
201  ac_prev=  ac_prev=
# Line 59  for ac_option ; do Line 212  for ac_option ; do
212    
213      case $ac_option in      case $ac_option in
214                    
215          -help | --help | -h | --h)          -help | --help | -h | --h) usage ;;
216              usage ;;          -verbose | --verbose | -v | --v) dBug=t ;;
         -verbose | --verbose | -v | --v)  
             dBug=t ;;  
217                    
218          -list  | --list  | -l | --l)          -list  | --list  | -l | --l) ac_prev=MACHINES ;;
219              ac_prev=MACHINES ;;          -list=* | --list=*) MACHINES=$ac_optarg ;;
220          -list=* | --list=*)  
221              MACHINES=$ac_optarg ;;          -day  | --day  | -d | --d) ac_prev=FIRSTDAY ;;
222            -day=* | --day=*) FIRSTDAY=$ac_optarg ;;
223          -day  | --day  | -d | --d)  
224              ac_prev=FIRSTDAY ;;          -upto | --upto | -u | --u) ac_prev=LASTDAY ;;
225          -day=* | --day=*)          -upto=* | --upto=*) LASTDAY=$ac_optarg ;;
226              FIRSTDAY=$ac_optarg ;;  
227            -before | --before | -b | --b) ac_prev=BEFORE ;;
228          -upto | --upto | -u | --u)          -before=* | --before=*) BEFORE=$ac_optarg ;;
229              ac_prev=LASTDAY ;;  
230          -upto=* | --upto=*)          -outp | --outp | -o | --o) ac_prev=OUTPFIL ;;
231              LASTDAY=$ac_optarg ;;          -outp=* | --outp=*) OUTPFIL=$ac_optarg ;;
232    
233          -outp | --outp | -o | --o)          -nldf | --nldf | -n | --n) ac_prev=NBLDIFF ;;
234              ac_prev=OUTPFIL ;;          -nldf=* | --nldf=*) NBLDIFF=$ac_optarg ;;
235          -outp=* | --outp=*)  
236              OUTPFIL=$ac_optarg ;;          -addr | --addr | -a | --a) ac_prev=ADDRESS ;;
237            -addr=* | --addr=*) ADDRESS=$ac_optarg ;;
238          -nldf | --nldf | -n | --n)  
239              ac_prev=NBLDIFF ;;          *) echo "Error: don't understand argument \"$ac_option\""
240          -nldf=* | --nldf=*)             usage ;;
             NBLDIFF=$ac_optarg ;;  
   
         -addr | --addr | -a | --a)  
             ac_prev=ADDRESS ;;  
         -addr=* | --addr=*)  
             ADDRESS=$ac_optarg ;;  
   
         *)  
             echo "Error: don't understand argument \"$ac_option\""  
             usage  
             ;;  
241    
242       esac       esac
243    
# Line 113  if test "x$ttt" != 'xyz' ; then Line 253  if test "x$ttt" != 'xyz' ; then
253    exit 2    exit 2
254  fi  fi
255  if test $LASTDAY = "30000000" ; then LASTDAY=$FIRSTDAY ; fi  if test $LASTDAY = "30000000" ; then LASTDAY=$FIRSTDAY ; fi
256    if test  $BEFORE = "30000000" ; then  BEFORE=$FIRSTDAY ; fi
257  CMDLINE=$0  CMDLINE=$0
258  for xx in "$@" ; do nw=`echo $xx | wc -w`  for xx in "$@" ; do nw=`echo $xx | wc -w`
259    if test $nw = '1' ; then CMDLINE="$CMDLINE $xx"    if test $nw = '1' ; then CMDLINE="$CMDLINE $xx"
260                        else CMDLINE="$CMDLINE '$xx'" ; fi                        else CMDLINE="$CMDLINE '$xx'" ; fi
261  done  done
262    
263  PERIOD=`echo $FIRSTDAY | sed 's/[0-9][0-9]$//'`  PERIOD=`echo $LASTDAY | sed 's/[0-9][0-9]$//'`
264  PP=`expr $PERIOD - 1`  PP=`expr $PERIOD - 1`
265  PM=`echo $PP | sed 's/^[0-9][0-9][0-9][0-9]//'`  PM=`echo $PP | sed 's/^[0-9][0-9][0-9][0-9]//'`
266  PY=`echo $PP | sed 's/[0-9][0-9]$//'`  PY=`echo $PP | sed 's/[0-9][0-9]$//'`
# Line 140  echo "CMDLINE='$CMDLINE'" > $OUTPFIL Line 281  echo "CMDLINE='$CMDLINE'" > $OUTPFIL
281  echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'" >> $OUTPFIL  echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'" >> $OUTPFIL
282  echo "INDIR='$INDIR'" >> $OUTPFIL  echo "INDIR='$INDIR'" >> $OUTPFIL
283  echo "Checking latest output from $FIRSTDAY until $LASTDAY" >> $OUTPFIL  echo "Checking latest output from $FIRSTDAY until $LASTDAY" >> $OUTPFIL
284    echo "  versus latest from before $BEFORE" >> $OUTPFIL
285    
286  if test $dBug = 't' ; then  if test $dBug = 't' ; then
287    echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'"    echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'"
288    echo "FIRSTDAY='$FIRSTDAY' , LASTDAY='$LASTDAY'"    echo "FIRSTDAY='$FIRSTDAY' , LASTDAY='$LASTDAY' , BEFORE='$BEFORE'"
289  fi  fi
290  if test -d $INDIR ; then  if test -d $INDIR ; then
291    dirP=`echo $INDIR | sed "s/$PERIOD/$PREV_P/"`    dirP=`echo $INDIR | sed "s/$PERIOD/$PREV_P/"`
# Line 159  else Line 301  else
301  fi  fi
302    
303  #- a short summary of this checking :  #- a short summary of this checking :
304  OUTPSUM=`echo $FIRSTDAY | sed 's/^20../_/'`  OUTPSUM=`echo $LASTDAY | sed 's/^20../_/'`
305  OUTPSUM=`basename $0`"$OUTPSUM.txt"  OUTPSUM=`basename $0`"$OUTPSUM.txt"
306  if test -e $OUTPSUM ; then mv -f $OUTPSUM $OUTPSUM'_bak' ; fi  if test -e $OUTPSUM ; then mv -f $OUTPSUM $OUTPSUM'_bak' ; fi
307  echo ' '$CMDLINE > $OUTPSUM  echo ' '$CMDLINE > $OUTPSUM
# Line 169  if test $FIRSTDAY = $LASTDAY ; then Line 311  if test $FIRSTDAY = $LASTDAY ; then
311  else  else
312    echo -n "Checking latest output from $FIRSTDAY until $LASTDAY" | tee -a $OUTPSUM    echo -n "Checking latest output from $FIRSTDAY until $LASTDAY" | tee -a $OUTPSUM
313  fi  fi
314  echo " versus latest prior to this period" | tee -a $OUTPSUM  if test $FIRSTDAY = $BEFORE ; then
315      echo " versus latest prior to this period" | tee -a $OUTPSUM
316    else
317      echo " versus latest from before $BEFORE" | tee -a $OUTPSUM
318    fi
319  echo "    Machine   Tot. Nb.   no    Nb with  Nb diff" >> $OUTPSUM  echo "    Machine   Tot. Nb.   no    Nb with  Nb diff" >> $OUTPSUM
320  echo "     name     checked   comp    Diff    lines"  >> $OUTPSUM  echo "     name     checked   comp    Diff    lines"  >> $OUTPSUM
321    
322  ( 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
323    
324  if test "x$MACHINES" = "x_All_" ; then  if test "x$MACHINES" = "x_All_" ; then
325    MACHINES="faulks aces eddy bay meander lagoon hugo"    MACHINES="faulks meander aces- acesgrid baudelaire dickens danton beagle harbor"
326    MACHINES="$MACHINES columbia edvir rays solasrv sx8 xd1"    MACHINES="$MACHINES pleiades iblade rays solasrv sx8"
327    MACHINES="$MACHINES beagle batsi starp"    MACHINES="$MACHINES trane dodongo dokdo stomp bigred"
328    
329    MALL=`cat ./dir_all | sed -e 's|_| |g' | awk '{print $2}' | sort | uniq`    MALL=`cat ./dir_all | sed -e 's|_| |g' | awk '{print $2}' | sort | uniq`
330    for madd in $MALL ; do    for madd in $MALL ; do
331      present=0      present=0
332      for m in $MACHINES ; do      for m in $MACHINES ; do
333          echo $madd | grep $m > /dev/null 2>&1          mm=`echo $m | sed 's/\./ /g' | awk '{print $1}'`
334          RETVAL=$?          echo $madd | grep $mm > /dev/null 2>&1
335          test $RETVAL = 0  &&  present=1          RETVAL=$?
336          continue          test $RETVAL = 0  &&  present=1
337            continue
338      done      done
339      test $present = 0  &&  MACHINES="$MACHINES $madd"      test $present = 0  &&  MACHINES="$MACHINES $madd"
340    done    done
341  fi  fi
342    #echo "MACHINES=$MACHINES" ; exit
343    
344  for mname in $MACHINES ; do  for pname in $MACHINES ; do
345    
346        sname=`echo $pname | sed 's/-$//'`
347        mname=`echo $pname | sed 's/\./ /g' | awk '{print $1}'`
348        sUser=
349        if test $mname != $pname ; then
350          # to select results from user "sUser"
351          sUser=`echo $pname | sed 's/\./ /g' | awk '{print $2}'`
352        fi
353    
354      if test $dBug = 't' ; then echo "  $mname" ; fi      if test $dBug = 't' ; then echo "  $pname" ; fi
355      echo " name='$mname'" >> $OUTPFIL      echo " name='$pname'" >> $OUTPFIL
356      ctot=0 ; cmis=0 ; cdif=0      ctot=0 ; cmis=0 ; cdif=0
357    
358      # put results from selected period in "slist",      # put results from selected period in "slist",
359      #     results from previous period in "plist"      #     results from previous period in "plist"
360      rm -f ./plist ./slist ; touch ./plist ./slist      rm -f ./plist ./slist ; touch ./plist ./slist
361    
362      for n in $listNum ; do      #- create list of results (slist & plist) from current month directory
363        num1=`wc -l ./slist | awk '{print $1}'`      monthDir=1
364        num0=`wc -l ./plist | awk '{print $1}'`      make_resdir_list
       if test $n == 2 ; then  
         num2=`expr $num1 \* $n`  
         if [ $num0 -lt $num2 ] ; then  
           dir_list=`( cd $INDIR ; ls -1 -t ../$PREV_P/*${mname}*/summary.txt 2> /dev/null | sed 's/\/summary.txt//' )`  
           #echo "dir_list='$dir_list'"  
         fi  
       else  
         num2=$n  
         dir_list=`grep $mname ./dir_all`  
       fi  
       if [ $num0 -lt $num2 ] ; then  
         for i in $dir_list ; do  
   
             dir=$INDIR"/"$i  
             OPTFILE=  
             if test -r $dir/summary.txt ; then  
                 comm=`grep 'OPTFILE=' $dir/summary.txt`  
                 eval $comm  
                 OPTFILE=${OPTFILE##*/}  
             fi  
             if test "x$OPTFILE" = x -a -r "$dir/genmake_state" ; then  
                 comm=`grep 'OPTFILE=' $dir/genmake_state 2>/dev/null`  
                 eval $comm  
                 OPTFILE=${OPTFILE##*/}  
             fi  
             if test "x$OPTFILE" = x ; then  
                 comm=`grep '^# OPTFILE=' $dir/*/Makefile* 2>/dev/null | head -1`  
                 comm=${comm##*#}  
                 eval $comm  
                 OPTFILE=${OPTFILE##*/}  
             fi  
             if test "x$OPTFILE" = x ; then  
                 OPTFILE="not_explicitly_specified"  
             fi  
   
             ADJOINT=  
             RESTART=0  
             NOI3E=0  
             if test -r $dir/summary.txt ; then  
                 comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null`  
                 eval $comm  
                 RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt`  
                 NOI3E=`grep -c "^run: .*testreport .* '*-noieee'* " $dir/summary.txt`  
             fi  
             if test "x$RESTART" = x0 ; then  
                 kind="forward"  
                 test "x$ADJOINT" = xtrue  &&  kind="adjoint"  
             else  
                 kind="restart"  
             fi  
             if test "x$NOI3E" = x1 ; then  
                 OPTFILE="${OPTFILE}.noieee"  
             fi  
             day=`echo $i   | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`  
             ttt=`echo $day | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`  
             day=`echo $ttt | sed -e 's|_| |g' |awk '{print $NF}'`  
   
             if [ $day -lt $FIRSTDAY ] ; then  
                 echo "$OPTFILE$kind $day $OPTFILE $kind $i" >> ./plist  
             elif [ $day -le $LASTDAY ] ; then  
                 echo "$OPTFILE$kind $day $OPTFILE $kind $i" >> ./slist  
             else  
                 if test $dBug = 't' ; then  
                    echo "discard day='$day' from: $i" | tee -a $OUTPFIL  
                 fi  
             fi  
   
         done  
         if test $dBug = 't' ; then  
           if test $n == 1 ; then  
             echo "---- current list (n=$n) :" | tee -a $OUTPFIL  
                 cat ./slist | tee -a $OUTPFIL  
           fi  
           echo   ".... previous list (n=$n):" | tee -a $OUTPFIL  
                 cat ./plist | tee -a $OUTPFIL  
         fi  
   
       fi  
     done  
     if test $dBug = 't' ; then echo "----" | tee -a $OUTPFIL ; fi  
365    
366      #  Do we have any data?  If so, create the latest pointer.      #  Do we have any data?  If so, create the latest pointer.
367      num=`wc -l ./slist | awk '{print $1}'`      num=`wc -l ./slist | awk '{print $1}'`
# Line 296  for mname in $MACHINES ; do Line 372  for mname in $MACHINES ; do
372          for key in $keys ; do          for key in $keys ; do
373            ctot=`expr $ctot + 1`            ctot=`expr $ctot + 1`
374            sline=`grep "^$key " ./slist | head -1`            sline=`grep "^$key " ./slist | head -1`
375            sdir=`echo $sline | cut -d " " -f 5`            sdir=`echo $sline | cut -d " " -f 5`
376            kind=`echo $sline | cut -d " " -f 4`            type=`echo $sline | cut -d " " -f 4`
377            optf=`echo $sline | cut -d " " -f 3`            optf=`echo $sline | cut -d " " -f 3`
378            num=`grep -c "^$key" ./plist`            num=`grep -c "^$key" ./plist`
379              if test $num = 0 -a $monthDir = 1 ; then
380              #- add results from previous month directory to "plist".
381                monthDir=2
382                make_resdir_list
383                num=`grep -c "^$key" ./plist`
384              fi
385            #- discard unsafe test:            #- discard unsafe test:
386            dd=`echo $optf | grep -c 'gfortran.*mth'`            dd=`echo $optf | grep -c 'gfortran+mth'`
387            #if [ $dd -ge 1 ] ; then num=-1 ; fi            if test $mname = 'lagoon' -a $dd = 1 ; then num=-1 ; fi
388            if test $num -gt 0 ; then            if test $mname = 'harbor' -a $dd = 1 ; then num=-1 ; fi
389              #if test $mname = 'aces' -a $optf = 'linux_ia32_open64' ; then num=-1 ; fi
390              #if test $mname = 'aces' -a $optf = 'linux_ia32_g95' ; then num=-1 ; fi
391              dd=`echo $optf | grep -c 'bigred.*noieee'`
392              #if test $mname = 'bigred' -a $dd = 1 ; then num=-1 ; fi
393              if test $num -lt 0 ; then
394                echo "  discard $sdir : $type , of='$optf'" | tee -a $OUTPFIL
395                cmis=`expr $cmis + 1`
396              elif test $num = '0' ; then
397                echo "no previous test for:" $key | tee -a $OUTPFIL
398                cmis=`expr $cmis + 1`
399              else
400              pline=`grep "^$key " ./plist | head -1`              pline=`grep "^$key " ./plist | head -1`
401              if test $dBug = 't' ; then              if test $dBug = 't' ; then
402                  echo "s='$sline'" | tee -a $OUTPFIL                  echo "s='$sline'" | tee -a $OUTPFIL
403                  echo "p='$pline'" | tee -a $OUTPFIL                  echo "p='$pline'" | tee -a $OUTPFIL
404              fi              fi
405              pdir=`echo $pline | cut -d " " -f 5`              pdir=`echo $pline | cut -d " " -f 5`
406              outs="$INDIR/$sdir/summary.txt"              outs="$INDIR/$sdir/summary.txt"
407              sed -n "5,$ p" $outs | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \              xx=`( echo 5 ; sed -n '/^  OPTFILE=/=' $outs ) | tail -1`
408                                   | sed 's/ OPTFILE=.*\// OPTFILE=/g' \              sed "1,$xx d" $outs | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \
409                                   | grep -v '^[A-S][a-t]* time:  ' > tmpfs                                  | grep -v '^[A-S][a-t]* time:  ' > tmpfs
410              outp="$INDIR/$pdir/summary.txt"              outp="$INDIR/$pdir/summary.txt"
411              sed -n "5,$ p" $outp | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \              xx=`( echo 5 ; sed -n '/^  OPTFILE=/=' $outp ) | tail -1`
412                                   | sed 's/ OPTFILE=.*\// OPTFILE=/g' \              sed "1,$xx d" $outp | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \
413                                   | grep -v '^[A-S][a-t]* time:  ' > tmpfp                                  | grep -v '^[A-S][a-t]* time:  ' > tmpfp
414                #-- re-order list of exp (according to local "sort" order)
415                listD=`grep '^[YN] [YN] [YN] [YN]' tmpfs | awk '{print $NF}' | sort`
416                for xx in $listD
417                do
418                    sed "/ $xx\$/d" tmpfs > tmpfn
419                    sed -n "/ $xx\$/p" tmpfs >> tmpfn
420                    mv tmpfn tmpfs
421                done
422                listD=`grep '^[YN] [YN] [YN] [YN]' tmpfp | awk '{print $NF}' | sort`
423                for xx in $listD
424                do
425                    sed "/ $xx\$/d" tmpfp > tmpfn
426                    sed -n "/ $xx\$/p" tmpfp >> tmpfn
427                    mv tmpfn tmpfp
428                done
429              echo -n "=== diff $sdir $pdir :" | tee -a $OUTPFIL              echo -n "=== diff $sdir $pdir :" | tee -a $OUTPFIL
430              diff tmpfs tmpfp > tmpdf              diff tmpfs tmpfp > tmpdf
431              yy=$?              yy=$?
432              if test $yy != '0' ; then              if test $yy != '0' ; then
433                  echo " $kind , of='$optf'" | tee -a $OUTPFIL                  echo " $type , of='$optf'" | tee -a $OUTPFIL
434                  #grep '^run: ' $outp                  #grep '^run: ' $outp
435                  #grep '^run: ' $outs                  #grep '^run: ' $outs
436                  #-- score for each test:                  #-- score for each test:
# Line 340  for mname in $MACHINES ; do Line 448  for mname in $MACHINES ; do
448                  ndf=`expr $ndf / 2`                  ndf=`expr $ndf / 2`
449                  nn=`grep -c '^---' tmpdf`                  nn=`grep -c '^---' tmpdf`
450                  ndf=`expr $ndf - $nn`                  ndf=`expr $ndf - $nn`
451                  if [ $ndf -le $NBLDIFF ] ; then                  if [ $ndf -le $NBLDIFF ] ; then
452                    cat tmpdf                    cat tmpdf
453                  else                  else
454                    echo " $ndf lines differ ( $score_s , $score_p )"                    echo " $ndf lines differ ( $score_s , $score_p )"
# Line 348  for mname in $MACHINES ; do Line 456  for mname in $MACHINES ; do
456                  echo "< "`head -1 $outs`" ( $score_s )" >> $OUTPFIL                  echo "< "`head -1 $outs`" ( $score_s )" >> $OUTPFIL
457                  echo "> "`head -1 $outp`" ( $score_p )" >> $OUTPFIL                  echo "> "`head -1 $outp`" ( $score_p )" >> $OUTPFIL
458                  cat tmpdf >> $OUTPFIL                  cat tmpdf >> $OUTPFIL
459                  if [ $cdif -eq 0 ] ; then                  if [ $cdif -eq 0 ] ; then
460                    clin=`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`                    clin=`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`
461                  else                  else
462                    clin="$clin,"`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`                    clin="$clin,"`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`
463                  fi                  fi
464                  cdif=`expr $cdif + 1`                  cdif=`expr $cdif + 1`
465                  echo '----------------------------------------' | tee -a $OUTPFIL                  echo '----------------------------------------' | tee -a $OUTPFIL
466              else              else
467                  echo "" | tee -a $OUTPFIL                  echo " $type , of='$optf'" | tee -a $OUTPFIL
468              fi              fi
469              rm -f tmpfs tmpfp tmpdf              rm -f tmpfs tmpfp tmpdf
470            elif test $num = '0' ; then            fi
             echo "no previous test for:" $key | tee -a $OUTPFIL  
             cmis=`expr $cmis + 1`  
           else  
             cmis=`expr $cmis + 1`  
           fi  
471          done          done
472          if [ $cmis -gt 0 ] ; then tmis='(-'$cmis')' ; else tmis='(--)' ; fi          if [ $cmis -gt 0 ] ; then tmis='(-'$cmis')' ; else tmis='(--)' ; fi
473          printf '%11s :  %3i      %4s   %3i  ' $mname $ctot $tmis $cdif >> $OUTPSUM          printf '%11s :  %3i      %4s   %3i  ' $sname $ctot $tmis $cdif >> $OUTPSUM
474          if [ $cdif -gt 0 ] ; then          if [ $cdif -gt 0 ] ; then
475            echo "   $clin" >> $OUTPSUM            echo "   $clin" >> $OUTPSUM
476         else echo "" >> $OUTPSUM ; fi          else echo "" >> $OUTPSUM ; fi
477      fi      fi
478    
479  done  done

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.31

  ViewVC Help
Powered by ViewVC 1.1.22