#!/bin/csh -f
# Test program for Wild-LIFE
# Runs the entire test-suite and generates a log file
set umask=666
rm -f editdiffs.sh
touch editdiffs.sh
if ($1 == 1) then
echo "Running complete Test"
./check_edit `ls LF` | tee editdiffs.sh
else 
echo "Testing $1 - $2 only! "
./check_edit `"ls LF/$2.lf"`
echo "$2 Tested"
endif
chmod u+x editdiffs.sh
