tap-bailout-leading-space.sh 1.4 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. # A "Bail out!" directive that is preceded by whitespace should still
  17. # be recognized.
  18. . test-init.sh
  19. . tap-setup.sh
  20. cat > a.test <<END
  21. 1..1
  22. ok 1
  23. Bail out!
  24. END
  25. cat > b.test <<END
  26. 1..1
  27. ok 1 # SKIP
  28. ${tab}Bail out!
  29. END
  30. cat > c.test <<END
  31. 1..1
  32. ${tab} ${tab}${tab}Bail out! FUBAR! $tab
  33. END
  34. cat >> exp <<END
  35. PASS: a.test 1
  36. ERROR: a.test - Bail out!
  37. SKIP: b.test 1
  38. ERROR: b.test - Bail out!
  39. ERROR: c.test - Bail out! FUBAR!
  40. END
  41. run_make -O -e FAIL TESTS='a.test b.test c.test' check
  42. count_test_results total=5 pass=1 fail=0 xpass=0 xfail=0 skip=1 error=3
  43. LC_ALL=C sort exp > t
  44. mv -f t exp
  45. # We need the sort below to account for parallel make usage.
  46. grep ': [abcde]\.test' stdout \
  47. | sed "s/[ $tab]*#[ $tab]*SKIP.*//" \
  48. | LC_ALL=C sort > got
  49. cat exp
  50. cat got
  51. diff exp got
  52. :