tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / missing3.sh
1 #! /bin/sh
2 # Copyright (C) 2004-2013 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Test missing when running a tool's --version.
18
19 am_create_testdir=empty
20 . test-init.sh
21
22 get_shell_script missing
23
24 # b7cb8259 assumed not to exist.
25
26 run_cmd ()
27 {
28   st=0; "$@" >stdout 2>stderr || st=$?
29   cat stdout
30   cat stderr >&2
31   return $st
32 }
33
34 run_cmd ./missing b7cb8259 --version && exit 1
35 grep WARNING stderr && exit 1
36 run_cmd ./missing b7cb8259 --grep && exit 1
37
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
43   fi
44 fi
45
46 # missing itself it known to exist :)
47
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
54
55 :