run-ptest 281 B

1234567891011121314
  1. #!/bin/sh
  2. for case in `find t -type f -name '*.t'`; do
  3. perl -I inc -I blib -Mblib $case >$case.output 2>&1
  4. ret=$?
  5. cat $case.output
  6. if [ $ret -ne 0 ]; then
  7. echo "FAIL: ${case%.t}"
  8. else
  9. echo "PASS: ${case%.t}"
  10. fi
  11. rm -f $case.output
  12. done