tap-passthrough-exit.sh 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #! /bin/sh
  2. # Copyright (C) 2011-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # TAP support:
  17. # - non-success exit status of a test script is reported in the
  18. # log file
  19. # See also related test 'tap-passthrough.sh'.
  20. . test-init.sh
  21. cat > Makefile.am << 'END'
  22. TEST_LOG_COMPILER = $(SHELL)
  23. TESTS =
  24. END
  25. exit_statuses='1 2 77 99'
  26. for e in $exit_statuses; do
  27. unindent > exit-$e.test <<END
  28. #!/bin/sh
  29. echo 1..1
  30. echo ok 1
  31. exit $e
  32. END
  33. echo TESTS += exit-$e.test >> Makefile.am
  34. done
  35. . tap-setup.sh
  36. st=0
  37. $MAKE check || st=$?
  38. for e in $exit_statuses; do cat exit-$e.log; done
  39. cat test-suite.log
  40. test $st -gt 0 || exit 1
  41. for e in $exit_statuses; do
  42. for log in exit-$e.log test-suite.log; do
  43. grep "^ERROR: exit-$e\\.test - exited with status $e$" $log
  44. done
  45. done
  46. run_make check TEST_LOG_DRIVER_FLAGS='--ignore-exit'
  47. $FGREP ".test - exited with status" *.log && exit 1
  48. :