2 # Copyright (C) 2011-2012 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)
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 <http://www.gnu.org/licenses/>.
18 # - missing, unreadable, or not-executable test scripts cause proper
27 cat >> configure.ac <<END
31 cat > Makefile.am << 'END'
32 TEST_LOG_DRIVER = $(srcdir)/tap-driver
33 TESTS = none.test noread.test noexec.test
37 cat > noexec.test <<'END'
43 cp noexec.test noread.test
52 if $MAKE check >stdout; then
58 result_ "$r" '"make check" returns non-zero exit status'
60 # FIXME: maybe grep for stricter error messages in the next checks?
62 command_ok_ "non-existent test is reported" \
63 grep '^ERROR: none\.test' stdout
65 desc="non-executable test is reported"
66 # Redirect output to avoid confusing automake's testsuite own TAP driver.
67 if ./noexec.test >/dev/null; then
68 skip_ -r "any file is executable" "$desc"
70 command_ok_ "$desc" -- grep '^ERROR: noexec\.test' stdout
73 desc="non-readable test is reported"
74 if test -r noread.test; then
75 skip_ -r "any file is readable" "$desc"
77 command_ok_ "$desc" -- grep '^ERROR: noread\.test' stdout
80 # Check that no spurious test result is reported. This is lower-priority
81 # (and in fact the check currently fails for our awk-based driver).
83 if test $am_tap_implementation = shell; then
86 # Older versions of IPC::Open3 (e.g., version 1.05 on perl 5.12.4 or
87 # version 1.0103 on perl 5.6.2) fail to properly trap errors in exec(2)
88 # calls in the child process; hence, the TAP driver cannot be properly
89 # informed of such error.
91 use IPC::Open3 qw/open3/;
93 eval { open3(*STDIN, *STDOUT, *STDERR, "am--no-such-command") };
94 $@ =~ m/\bopen3:.*am--no-such-command/
95 or die "Bad \$@ value: \"$@\"\n";
97 : # OK. IPC::Open3 should be good enough.
99 for s in '"missing plan" message' 'results'; do
100 skip_ -r "IPC::Open3 not good enough" "no spurious $s"
106 command_ok_ 'no spurious "missing plan" message' \
107 -D "$directive" -- not grep 'missing.* plan' stdout
108 command_ok_ 'no spurious results' \
109 -D "$directive" -r 'still get "missing plan"' \
110 count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=3