tap-merge-stdout-stderr.sh 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. # - The Automake TAP driver has an option that instruct it to read TAP
  18. # input also from the stderr of the test command, not only its stdout.
  19. . test-init.sh
  20. fetch_tap_driver
  21. cat > Makefile.am << 'END'
  22. AM_TEST_LOG_DRIVER_FLAGS = --comments --merge
  23. TESTS = all.test
  24. END
  25. . tap-setup.sh
  26. cat > all.test <<END
  27. #!/bin/sh
  28. echo 1..4
  29. echo ok 1 >&2
  30. echo ok 2
  31. echo "not ok 3 # TODO" >&2
  32. echo "ok 4 # SKIP"
  33. echo "# foo foo foo" >&2
  34. END
  35. chmod a+x all.test
  36. run_make -O check
  37. count_test_results total=4 pass=2 fail=0 xpass=0 xfail=1 skip=1 error=0
  38. grep '^# all\.test: foo foo foo' stdout
  39. cat > all.test <<END
  40. #!/bin/sh
  41. echo 1..1
  42. echo ok 1
  43. echo 'Bail out!' >&2
  44. END
  45. run_make -O -e FAIL check
  46. count_test_results total=2 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=1
  47. # See that the option '--no-merge' can override the effect of '--merge'.
  48. run_make -O TEST_LOG_DRIVER_FLAGS=--no-merge check
  49. count_test_results total=1 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=0
  50. :