[BACK]Return to dotest CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / pari-2.2 / src / test

Diff for /OpenXM_contrib/pari-2.2/src/test/Attic/dotest between version 1.1.1.1 and 1.2

version 1.1.1.1, 2001/10/02 11:17:12 version 1.2, 2002/09/11 07:27:08
Line 134  for suf in $SUF; do
Line 134  for suf in $SUF; do
   fi    fi
 done  done
   
 case "$buge" in  case "x$buge" in
   *) end=""    x)  file_diff=;;
        file_diff=elliptic-sta.dif;;    xsta|xdyn)
   sta|dyn)        end=" (gp-$buge only)"
        end=" (gp-$buge only)"        file_diff=elliptic-$buge.dif;;
        file_diff=elliptic-$buge.dif;;    xexe)
   exe)        end=" (gp-$buge)"
        end=" (gp-$buge)"        file_diff=elliptic.dif;;
        file_diff=elliptic.dif;;    x*) end=""
         file_diff=elliptic-sta.dif;;
 esac  esac
   if test -n "$file_diff"; then
 len=`wc -l $file_diff | sed -e 's/ *\([0-9]*\).*/\1/'`  len=`wc -l $file_diff | sed -e 's/ *\([0-9]*\).*/\1/'`
 pat=`head -4 $file_diff|tail -1|grep "141,154"`  pat=`head -4 $file_diff|tail -1|grep "141,154"`
 if test $len -eq 46  -a  -n "$pat"; then  if test $len -eq 50  -a  -n "$pat"; then
 cat << EOT  cat << EOT
 NOTE: the problem noted in 'elliptic' boils down to different FPU and  NOTE: the problem noted in 'elliptic' boils down to different FPU and
 compiler optimizations than on our test machine. It can safely be ignored,  compiler optimizations than on our test machine. It can safely be ignored,
 the difference being insignificant given the requested precision.  the difference being insignificant given the requested precision.
 EOT  EOT
 fi  fi
   fi
   
 case "$bugp" in  case "x$bugp" in
   *) end=""    x)  file_diff=;;
        file_diff=program-sta.dif;;    xsta|xdyn)
   sta|dyn)        end=" (gp-$bugp only)"
        end=" (gp-$bugp only)"        file_diff=program-$bugp.dif;;
        file_diff=program-$bugp.dif;;    xexe)
   exe)        end=" (gp-$bugp)"
        end=" (gp-$bugp)"        file_diff=program.dif;;
        file_diff=program.dif;;    x*) end=""
         file_diff=program-sta.dif;;
 esac  esac
   if test -n "$file_diff"; then
 len=`wc -l $file_diff | sed -e 's/ *\([0-9]*\).*/\1/'`  len=`wc -l $file_diff | sed -e 's/ *\([0-9]*\).*/\1/'`
 pat=`head -4 $file_diff|tail -1|grep "108,118"`  pat=`head -4 $file_diff|tail -1|grep "108,118"`
   
 if test $len -eq 29  -a  -n "$pat"; then  if test $len -eq 29  -a  -n "$pat"; then
 cat << EOT  cat << EOT
 NOTE: the problem noted in 'program' is that install() does not work in your  NOTE: the problem noted in 'program' is that install() does not work in your
 configuration$end, so you will not be able to use this feature. Otherwise you  configuration$end, so you will not be able to use this feature. Otherwise you
 can safely ignore the above warning.  can safely ignore the above warning.
 EOT  EOT
   fi
 fi  fi

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>