| 15 |
|
|
| 16 |
where possible OPTIONS are: |
where possible OPTIONS are: |
| 17 |
(-help|-h) print usage |
(-help|-h) print usage |
| 18 |
(-of | -optfile)FILE specify an OPTFILE |
(-dir | -d) TDIR specify testing directory |
| 19 |
(default=$OPTFILE) |
(def="$TDIR") |
| 20 |
|
(-of | -optfile) FILE specify an OPTFILE |
| 21 |
|
(def="$OPTFILE") |
| 22 |
(-[no]ieee) IEEE math flag |
(-[no]ieee) IEEE math flag |
| 23 |
(default=-ieee) |
(def="$IEEE") |
| 24 |
|
|
| 25 |
EOF |
EOF |
| 26 |
exit 1 |
exit 1 |
| 29 |
|
|
| 30 |
# defaults |
# defaults |
| 31 |
OPTFILE="../tools/build_options/linux_ia32_g77" |
OPTFILE="../tools/build_options/linux_ia32_g77" |
| 32 |
|
TESTDIR="/scratch/edhill/test_"`hostname` |
| 33 |
IEEE="-ieee" |
IEEE="-ieee" |
| 34 |
|
|
| 35 |
# Parse options |
# Parse options |
| 50 |
-help | --help | -h | --h) |
-help | --help | -h | --h) |
| 51 |
usage ;; |
usage ;; |
| 52 |
|
|
| 53 |
|
-dir | --d) |
| 54 |
|
ac_prev=TESTDIR ;; |
| 55 |
|
--dir=* | -d=*) |
| 56 |
|
TESTDIR=$ac_optarg ;; |
| 57 |
|
|
| 58 |
-of | --of | -optfile | --optfile) |
-of | --of | -optfile | --optfile) |
| 59 |
ac_prev=OPTFILE ;; |
ac_prev=OPTFILE ;; |
| 60 |
--of=* | -of=* | --optfile=* | -optfile=*) |
--of=* | -of=* | --optfile=* | -optfile=*) |
| 75 |
done |
done |
| 76 |
|
|
| 77 |
echo -n "Creating a temp directory ..." |
echo -n "Creating a temp directory ..." |
|
cd ~/u3_edhill/testing |
|
| 78 |
mach=`hostname` |
mach=`hostname` |
| 79 |
file=${OPTFILE##*/} |
file=${OPTFILE##*/} |
| 80 |
tdir=$mach"_"$file |
tdir=$TESTDIR"_"$file |
| 81 |
test -e $tdir && rm -rf $tdir |
test -e $tdir && rm -rf $tdir |
| 82 |
mkdir $tdir |
mkdir $tdir |
| 83 |
echo " done" |
echo " done" |
| 84 |
|
|
| 85 |
echo -n "Downloading the MITgcm code over CVS ..." |
echo -n "Downloading the MITgcm code from CVS pserver..." |
| 86 |
cd $tdir |
cd $tdir |
| 87 |
export CVSROOT=':pserver:cvsanon@mitgcm.org:/u/gcmpack' |
export CVSROOT='/u/gcmpack' |
| 88 |
cvs co MITgcm > /dev/null 2>&1 |
cvs co MITgcm > /dev/null 2>&1 |
| 89 |
echo " done" |
echo " done" |
| 90 |
|
|
| 91 |
echo "Running testreport using:" |
echo "Running testreport using:" |
| 92 |
cd MITgcm/verification |
cd MITgcm/verification |
| 93 |
comm="./testreport $IEEE -a edhill@mitgcm.org" |
comm="./testreport $IEEE -a edhill@mitgcm.org" | tail -100 |
| 94 |
|
if test "x$OPTFILE" != x ; then |
| 95 |
|
comm="$comm -of=$OPTFILE" |
| 96 |
|
fi |
| 97 |
|
echo " \"$comm\"" |
| 98 |
|
echo "======================" |
| 99 |
|
echo |
| 100 |
|
$comm |
| 101 |
|
|
| 102 |
|
echo |
| 103 |
|
echo "======================" |
| 104 |
|
echo "Cleaning test directories:" |
| 105 |
|
./testreport -clean > /dev/null 2>&1 |
| 106 |
|
echo "======================" |
| 107 |
|
echo |
| 108 |
|
|
| 109 |
|
echo "Running testreport using:" |
| 110 |
|
comm="./testreport -adm $IEEE -a edhill@mitgcm.org" |
| 111 |
if test "x$OPTFILE" != x ; then |
if test "x$OPTFILE" != x ; then |
| 112 |
comm="$comm -of=$OPTFILE" |
comm="$comm -of=$OPTFILE" |
| 113 |
fi |
fi |
| 114 |
echo " \"$comm\"" |
echo " \"$comm\"" |
| 115 |
echo "======================" |
echo "======================" |
| 116 |
echo |
echo |
| 117 |
$comm |
$comm |
| 118 |
|
|