| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 | #! /bin/sh# Copyright (C) 2011-2017 Free Software Foundation, Inc.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program.  If not, see <http://www.gnu.org/licenses/>.# Basic TAP test protocol support:#  - special plan format to skip all the tests in a script. test-init.sh. tap-setup.shweirdchars=\''"$!&()[]<>#;^?*/@%=,.:'cat > foo.test <<END1..0ENDcat > bar.test <<ENDblah# blah1..0$tab $tabEND# It is undefined whether the comment after the plan below should# count as an explanation; still, the test should be skipped.cat > baz.test <<END1..0 # WWW::Mechanize not installedother    junk       linesENDcat > wget.test <<END1..0 # SKIP wget(1) not installed# See also curl.testENDcat > curl.test <<END1..0 # SKIP: Can't connect to gnu.org!# See also wget.testENDcat > mu.test <<END1..0 # SKIP $weirdcharsENDrun_make -O check \  TESTS='foo.test bar.test baz.test wget.test curl.test mu.test'count_test_results total=6 pass=0 fail=0 xpass=0 xfail=0 skip=6 error=0# Look for a regression where the "1..0" wasn't being stripped from the# SKIP message.$FGREP '1..0' stdout && exit 1grep '^SKIP: foo\.test$' stdoutgrep '^SKIP: bar\.test$' stdoutgrep '^SKIP: baz\.test' stdout # Deliberately laxer, see above for why.grep '^SKIP: wget\.test .* wget(1) not installed$' stdoutgrep '^SKIP: curl\.test .* Can'\''t connect to gnu\.org!$' stdoutgrep '^SKIP: mu\.test' stdout | $FGREP "$weirdchars" stdouttest $(grep -c ': .*\.test' stdout) -eq 6:
 |