| 140 |
RESTART=0 |
RESTART=0 |
| 141 |
FAST=0 |
FAST=0 |
| 142 |
DVLP=0 |
DVLP=0 |
| 143 |
|
MPI=0 |
| 144 |
MTH=0 |
MTH=0 |
| 145 |
UR4=0 |
UR4=0 |
| 146 |
if test -r $dir/summary.txt ; then |
if test -r $dir/summary.txt ; then |
| 152 |
FAST=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt` |
FAST=`grep -c "^run: .*testreport.* '*-noieee'*" $dir/summary.txt` |
| 153 |
fi |
fi |
| 154 |
DVLP=`grep -c "^run: .*testreport.* '*-devel'*" $dir/summary.txt` |
DVLP=`grep -c "^run: .*testreport.* '*-devel'*" $dir/summary.txt` |
| 155 |
|
MPI=`grep -c "^run: .*testreport.* -mpi " $dir/summary.txt` |
| 156 |
|
if test "x$MPI" = x0 ; then |
| 157 |
|
MPI=`grep -c "^run: .*testreport.* -MPI " $dir/summary.txt` |
| 158 |
|
fi |
| 159 |
MTH=`grep -c "^run: .*testreport.* -mth " $dir/summary.txt` |
MTH=`grep -c "^run: .*testreport.* -mth " $dir/summary.txt` |
| 160 |
UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt` |
UR4=`grep -c "^run: .*testreport.* -use_r4 " $dir/summary.txt` |
| 161 |
if test "x$UR4" = x0 ; then |
if test "x$UR4" = x0 ; then |
| 171 |
if test "x$UR4" = x1 ; then |
if test "x$UR4" = x1 ; then |
| 172 |
OPTFILE="${OPTFILE}.use_r4" |
OPTFILE="${OPTFILE}.use_r4" |
| 173 |
fi |
fi |
| 174 |
|
if test "x$MPI" = x1 ; then |
| 175 |
|
yy=`echo $OPTFILE | grep -c '+mpi'` |
| 176 |
|
if test $yy = 0 ; then OPTFILE="${OPTFILE}+mpi" ; fi |
| 177 |
|
fi |
| 178 |
if test "x$MTH" = x1 ; then |
if test "x$MTH" = x1 ; then |
| 179 |
yy=`echo $OPTFILE | grep -c '+mth$'` |
yy=`echo $OPTFILE | grep -c '+mth$'` |
| 180 |
if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi |
if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi |