tests: remove dead code from t/make-dryrun.tap
[platform/upstream/automake.git] / t / make-dryrun.tap
1 #! /bin/sh
2 # Copyright (C) 2012-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 # Check that $(am__make_dryrun) works as expected.
18
19 . test-init.sh
20
21 plan_ 18
22
23 if echo "all: ; +@printf %sbb%s aa cc" | $MAKE -n -f - | grep aabbcc; then
24   make_plus_silence () { return 0; }
25 else
26   make_plus_silence () { return 1; }
27 fi
28
29 mkdir none
30 if echo nil: | $MAKE -I none -f -; then
31   make_supports_option_I () { return 0; }
32 else
33   make_supports_option_I () { return 1; }
34 fi
35
36 echo AC_OUTPUT >> configure.ac
37
38 cat > Makefile.am <<'END'
39 all:
40         : Dummy, nothing to do.
41 run:
42         @echo ":: $$MAKEFLAGS ::"; : For debugging.
43         $(am__make_dryrun) && exit 1; echo ok > from-run
44 dry:
45         +@echo ":: $$MAKEFLAGS ::"; : For debugging.
46         +$(am__make_dryrun) || exit 1; echo ok > from-dry
47 END
48
49 check_make ()
50 {
51   r=ok msg= mode= condition=: directive= reason= skip_reason=
52   case $1 in
53     --dry) mode=dry;;
54     --run) mode=run;;
55     *) fatal_ "check_run: invalid usage";;
56   esac
57   shift
58   while test $# -gt 0; do
59     case $1 in
60       -C) condition=$2 skip_reason=$3; shift; shift;;
61       -M) msg=$2; shift;;
62       -X) directive=TODO;;
63       --) shift; break;;
64        *) break;;
65     esac
66     shift
67   done
68   msg=${mode}${msg:+" [$msg]"}
69   if $condition; then
70     $MAKE "$mode" ${1+"$@"} || r='not ok'
71     test -f from-$mode      || r='not ok'
72     test ! -e bad           || r='not ok'
73     rm -f bad from-*        || fatal_ "cleaning up"
74   else
75     directive=SKIP reason=$skip_reason
76   fi
77   result_ "$r" -D "$directive" -r "$reason" "$msg"
78   unset r msg mode condition directive reason skip_reason
79 }
80
81 # ----------------------------------------------------------------------
82
83 $ACLOCAL    || fatal_ "aclocal failed"
84 $AUTOCONF   || fatal_ "autoconf failed"
85 $AUTOMAKE   || fatal_ "automake failed"
86 ./configure || fatal_ "configure failed"
87
88 # ----------------------------------------------------------------------
89
90 check_make --run
91
92 # Test against a known regression.  This was especially heinous, since
93 # make running in normal mode was sometimes mistaken for make running
94 # in dry mode.
95 check_make --run TESTS="n1.test n2.test"
96 check_make --run TESTS="n1 n2" AM_MAKEFLAGS="TESTS='n1 n2'"
97 check_make --run TESTS="n1 n2" AM_MAKEFLAGS='TESTS="n1 n2"'
98 check_make --run FOOFLAGS="-n -n -knf2 n --none -n"
99 check_make --run MYFLAGS="-n --dryrun -n --dry-run -n"
100
101 # ----------------------------------------------------------------------
102
103 check_make --dry -C make_plus_silence 'recipe prefix "+" unsupported' -n
104 check_make --dry -C using_gmake "\$MAKE is not GNU make" --dry-run -k
105
106 # ----------------------------------------------------------------------
107
108 # Automake bug#13760: the "n" in "none" used to confound am__make_dryrun
109 # into thinking the '-n' option had been passed.
110
111 pr='bug#13760'
112
113 check_make --run -C make_supports_option_I "-I make option unsupported" \
114                  -M "$pr" -I none
115
116 check_make --run -C using_gmake "\$MAKE is not GNU make" \
117                  -M "$pr" -I none --include dry-run 
118
119 check_make --dry -C make_supports_option_I "-I make option unsupported" \
120                  -M "$pr" -I none -n
121
122 check_make --dry -C using_gmake "\$MAKE is not GNU make" \
123                  -M "$pr" --dry-run -I none --include dry-run
124
125 # ----------------------------------------------------------------------
126
127 # Test for when shell metacharacters or backslashes are in $(MAKEFLAGS).
128
129 check_metachars ()
130 {
131   check_make --run -M "metachars" "$@"
132 }
133
134 check_metachars MYFLAGS="-n \"n\" '-n' --none -n"
135 check_metachars MYFLAGS='-knf2\ n\ \\n'
136 check_metachars MYFLAGS="(&) | ; \" \` '"
137 check_metachars MYFLAGS=" ' # ' "
138 check_metachars MYFLAGS='$(foo)'
139 check_metachars MYFLAGS='`touch bad`'
140
141 # ----------------------------------------------------------------------
142
143 :