test 376 B

1234567891011121314151617181920212223242526
  1. #!/bin/csh -f
  2. # test --- Run a REDUCE test file.
  3. # Author: Anthony C. Hearn.
  4. echo testing $1 ...
  5. rm -rf $reduce/log/$1.log
  6. date > $reduce/log/$1.log
  7. $reduce/reduce >>& $reduce/log/$1.log << EOF
  8. on errcont; % So that computation continues after an error.
  9. symbolic if "$2" neq "" then load_package $2;
  10. in "$reduce/xmpl/$1.tst";
  11. bye;
  12. EOF
  13. date >> $reduce/log/$1.log