Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / help4.test
1 #! /bin/sh
2 # Copyright (C) 2010 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 # Check that the first among --help and --version to be specified on
18 # the command line takes precedence over the following one.
19
20 . ./defs || Exit 1
21
22 set -e
23
24 # Ensure we run in an empty directory.
25 mkdir emptydir
26 cd emptydir
27
28 # Honour user overrides for $ACLOCAL and $AUTOMAKE.
29 ACLOCAL=`echo " $ACLOCAL " | sed 's/ -W[^ ]*/ /g'`
30 AUTOMAKE=`echo " $AUTOMAKE " | sed 's/ -W[^ ]*/ /g'`
31
32 escape_dots () { sed 's/\./\\./g'; } # avoid issues with `\' in backquotes
33 apiversion_rx=`echo "$APIVERSION" | escape_dots`
34
35 $ACLOCAL --version --help >stdout || { cat stdout; Exit 1; }
36 cat stdout
37 grep "^aclocal.*$apiversion_rx" stdout
38 grep "^Usage" stdout && Exit 1
39
40 $ACLOCAL --help --version >stdout || { cat stdout; Exit 1; }
41 cat stdout
42 grep "^Usage" stdout
43 grep "^aclocal.*$apiversion_rx" stdout && Exit 1
44
45 $AUTOMAKE --version --help >stdout || { cat stdout; Exit 1; }
46 cat stdout
47 grep "^automake.*$apiversion_rx" stdout
48 grep "^Usage" stdout && Exit 1
49
50 $AUTOMAKE --help --version >stdout || { cat stdout; Exit 1; }
51 cat stdout
52 grep "^Usage" stdout
53 grep "^automake.*$apiversion_rx" stdout && Exit 1
54
55 :