test-all 417 B

123456789101112131415161718192021222324
  1. #!/bin/csh -f
  2. # test-all --- Run all REDUCE Test Files.
  3. # Author: Anthony C. Hearn.
  4. date
  5. # Standard Tests
  6. foreach x (reduce math rounded complex elem decompos factor gcd int matrix \
  7. solve limits roots sum)
  8. $reduce/util/test $x
  9. end
  10. # Tests of Contributed Packages
  11. foreach x (algint arnum excalc gentran groebner scope taylor \
  12. spde tps compact orthovec avector)
  13. $reduce/util/test $x $x
  14. end
  15. date