check-all 560 B

1234567891011121314151617181920212223242526
  1. #!/bin/csh -f
  2. # check-all --- Check all REDUCE Test Files against Exemplary logs.
  3. # Author: Anthony C. Hearn.
  4. # Standard Tests
  5. foreach x (reduce math rounded complex elem decompos factor gcd int matrix \
  6. solve limits roots sum)
  7. echo "Checking $x ..."
  8. echo " "
  9. diff $reduce/log/$x.log $reduce/xlog
  10. echo " "
  11. end
  12. # Tests of Contributed Packages
  13. foreach x (algint arnum excalc gentran groebner scope taylor \
  14. spde tps compact orthovec avector)
  15. echo "Checking $x ..."
  16. echo " "
  17. diff $reduce/log/$x.log $reduce/xlog
  18. echo " "
  19. end