test.sh 228 B

123456789101112131415
  1. #!/bin/sh
  2. echo "Executing tests ..."
  3. cat test.txt | ./eval.out > ans.out.txt
  4. echo "Done."
  5. echo "Show diff ..."
  6. diff ans.txt ans.out.txt
  7. # Test equality
  8. if [ $status ]
  9. then
  10. echo 'All tests are OK.'
  11. else
  12. echo 'Failure !!!'
  13. fi