doc: typos in test file.
[automake.git] / t / tap-bailout-leading-space.sh
blob139adc4c9eec9ef7ff90644b496f1b2208c59797
1 #! /bin/sh
2 # Copyright (C) 2011-2024 Free Software Foundation, Inc.
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.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # A "Bail out!" directive that is preceded by whitespace should still
18 # be recognized.
20 . test-init.sh
21 . tap-setup.sh
23 cat > a.test <<END
24 1..1
25 ok 1
26 Bail out!
27 END
29 cat > b.test <<END
30 1..1
31 ok 1 # SKIP
32 ${tab}Bail out!
33 END
35 cat > c.test <<END
36 1..1
37 ${tab} ${tab}${tab}Bail out! FUBAR! $tab
38 END
40 cat >> exp <<END
41 PASS: a.test 1
42 ERROR: a.test - Bail out!
43 SKIP: b.test 1
44 ERROR: b.test - Bail out!
45 ERROR: c.test - Bail out! FUBAR!
46 END
48 run_make -O -e FAIL TESTS='a.test b.test c.test' check
49 count_test_results total=5 pass=1 fail=0 xpass=0 xfail=0 skip=1 error=3
51 LC_ALL=C sort exp > t
52 mv -f t exp
54 # We need the sort below to account for parallel make usage.
55 grep ': [abcde]\.test' stdout \
56 | sed "s/[ $tab]*#[ $tab]*SKIP.*//" \
57 | LC_ALL=C sort > got
59 cat exp
60 cat got
61 diff exp got