tap-exit.sh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # - an exit status != 0 of a test script causes an hard error
  18. # - the '--ignore-exit' option causes the TAP test driver to ignore
  19. # exit statuses of the test scripts.
  20. . test-init.sh
  21. echo TESTS = > Makefile.am
  22. for st in 1 2 77 99; do
  23. unindent > exit${st}.test <<END
  24. #!/bin/sh
  25. echo 1..1
  26. echo ok 1
  27. exit $st
  28. END
  29. echo TESTS += exit${st}.test >> Makefile.am
  30. done
  31. chmod a+x *.test
  32. . tap-setup.sh
  33. run_make -O -e FAIL check
  34. count_test_results total=8 pass=4 fail=0 xpass=0 xfail=0 skip=0 error=4
  35. grep '^ERROR: exit1\.test - exited with status 1$' stdout
  36. grep '^ERROR: exit2\.test - exited with status 2$' stdout
  37. grep '^ERROR: exit77\.test - exited with status 77$' stdout
  38. grep '^ERROR: exit99\.test - exited with status 99$' stdout
  39. echo TEST_LOG_DRIVER_FLAGS = --ignore-exit >> Makefile
  40. run_make -O check
  41. count_test_results total=4 pass=4 fail=0 xpass=0 xfail=0 skip=0 error=0
  42. :