maint: Update HACKING
[automake.git] / t / missing3.sh
blobf0bdeed36465c39a7df083853968226a5f542b43
1 #! /bin/sh
2 # Copyright (C) 2004-2017 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 # Test missing when running a tool's --version.
19 am_create_testdir=empty
20 . test-init.sh
22 get_shell_script missing
24 # b7cb8259 assumed not to exist.
26 run_cmd ()
28 st=0; "$@" >stdout 2>stderr || st=$?
29 cat stdout
30 cat stderr >&2
31 return $st
34 run_cmd ./missing b7cb8259 --version && exit 1
35 grep WARNING stderr && exit 1
36 run_cmd ./missing b7cb8259 --grep && exit 1
38 if test x"$am_test_prefer_config_shell" != x"yes"; then
39 # The /bin/sh from Solaris 10 is a spectacular failure. After a failure
40 # due to a "command not found", it sets '$?' to '1'.
41 if (st=0; /bin/sh -c 'no--such--command' || st=$?; test $st -eq 127); then
42 grep 'WARNING:.*missing on your system' stderr
46 # missing itself it known to exist :)
48 run_cmd ./missing ./missing --version || exit 1
49 grep 'missing .*(GNU [aA]utomake)' stdout
50 test -s stderr && exit 1
51 run_cmd ./missing ./missing --grep && exit 1
52 grep WARNING stderr && exit 1
53 grep "missing:.* unknown '--grep'" stderr