tests: avoid false failure in tail inotify test
[coreutils.git] / tests / misc / coreutils.sh
blobbcddcf3285c892ba9bdc74ca32e411d07a992dac
1 #!/bin/sh
2 # Verify behavior of separate coreutils multicall binary
4 # Copyright (C) 2014-2016 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
21 print_ver_ coreutils
23 test -s "$abs_top_builddir/src/coreutils.h" \
24 || skip_ "multicall binary is disabled"
26 # Yes outputs all its params so is good to verify argv manipulations
27 echo 'y' > exp
28 coreutils --coreutils-prog=yes | head -n10 | uniq > out
29 compare exp out || fail=1
31 # Ensure if incorrect program passed, we diagnose
32 echo "coreutils: unknown program 'blah'" > exp
33 coreutils --coreutils-prog='blah' --help 2>err && fail=1
34 compare exp err || fail=1
36 Exit $fail