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 >
Text File  |  1994-12-13  |  516b  |  31 lines

  1. #!/bin/csh
  2.  
  3. # A simple script to run all the tests
  4. # Ian Soboroff
  5.  
  6. echo "---------------------"
  7. echo "(# Running tstatic #)"
  8. echo "---------------------"
  9. cd tstatic
  10. tstatic
  11. cd ..
  12.  
  13. echo "------------------"
  14. echo "(# Running treg #)"
  15. echo "See treg.out for output file"
  16. echo "------------------"
  17. cd treg
  18. treg ../treg.out
  19. cd ..
  20.  
  21. echo "-----------------"
  22. echo "(# Running tio #)"
  23. echo "See tio.out for output file"
  24. echo "-----------------"
  25. cd tio
  26. tio testfile.step ../tio.out
  27. cd ..
  28.  
  29. # end
  30.  
  31.