home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftptest.leeds.ac.uk
/
2015.02.ftptest.leeds.ac.uk.tar
/
ftptest.leeds.ac.uk
/
bionet
/
CAE-GROUP
/
SCL-WIN3x
/
SCLTEST.EXE
/
RUNTESTS
< prev
next >
Wrap
Text File
|
1994-12-13
|
516b
|
31 lines
#!/bin/csh
# A simple script to run all the tests
# Ian Soboroff
echo "---------------------"
echo "(# Running tstatic #)"
echo "---------------------"
cd tstatic
tstatic
cd ..
echo "------------------"
echo "(# Running treg #)"
echo "See treg.out for output file"
echo "------------------"
cd treg
treg ../treg.out
cd ..
echo "-----------------"
echo "(# Running tio #)"
echo "See tio.out for output file"
echo "-----------------"
cd tio
tio testfile.step ../tio.out
cd ..
# end