Merge branch 'minor'
[automake.git] / t / subobj-clean-pr10697.sh
blobf3a60f53711f28c26421f3548e23a0ac09a61456
1 #! /bin/sh
2 # Copyright (C) 1998-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 # Removing subdir objects does not cause too much 'rm' invocations.
18 # Also, if we rename a source file in a subdirectory, the stale
19 # compiled object corresponding to the old name still gets removed by
20 # "make mostlyclean". See automake bug#10697.
21 # This is the non-libtool case. Keep this test in sync with sister test
22 # 'subobj-clean-lt-pr10697.sh', which deals with the libtool case.
24 required=cc
25 . test-init.sh
27 cat >> configure.ac << 'END'
28 AC_PROG_CC
29 AC_CONFIG_FILES([get-objext.sh:get-objext.in])
30 AC_OUTPUT
31 END
33 echo "OBJEXT='@OBJEXT@'" > get-objext.in
35 oPATH=$PATH
36 ocwd=$(pwd) || fatal_ "getting current working directory"
38 # An rm(1) wrapper that fails when invoked too many times.
39 mkdir rm-wrap
40 max_rm_invocations=3
41 count_file=$ocwd/rm-wrap/count
42 cat > rm-wrap/rm <<END
43 #!$AM_TEST_RUNNER_SHELL -e
44 count=\$((\$(cat '$count_file') + 1))
45 test \$count -le $max_rm_invocations || {
46 echo "rm invoked more than $max_rm_invocations times" >&2
47 exit 1
49 echo "\$count" > '$count_file'
50 PATH='$oPATH'; export PATH
51 exec rm "\$@"
52 END
53 chmod a+x rm-wrap/rm
54 echo "0" > rm-wrap/count
56 cat > Makefile.am <<'END'
57 .PHONY: sanity-check-rm
58 sanity-check-rm:
59 rm -f 1
60 rm -f 2
61 rm -f 3
62 rm -f x && exit 1; :
63 echo "0" > rm-wrap/count
65 AUTOMAKE_OPTIONS = subdir-objects
66 bin_PROGRAMS = foo
67 foo_SOURCES = \
68 sub1/a.c \
69 sub1/b.c \
70 sub1/c.c \
71 sub1/d.c \
72 sub1/e.c \
73 sub1/f.c \
74 sub2/a.c \
75 sub2/b.c \
76 sub2/c.c \
77 sub2/d.c \
78 sub2/e.c \
79 sub2/f.c \
80 main.c
81 END
83 mkdir sub1 sub2
84 echo 'int main (void)' > main.c
85 echo '{' >> main.c
86 for i in 1 2; do
87 for j in a b c d e f; do
88 echo "void $j$i (void) { }" > sub$i/$j.c
89 echo " $j$i ();" >> main.c
90 done
91 done
92 echo ' return 0;' >> main.c
93 echo '}' >> main.c
94 cat main.c # For debugging.
96 $ACLOCAL
97 $AUTOCONF
98 $AUTOMAKE -a
100 ./configure
102 test -f get-objext.sh
103 . ./get-objext.sh
105 $MAKE
107 # This must go after configure, since that will invoke rm many times.
108 PATH=$ocwd/rm-wrap$PATH_SEPARATOR$PATH; export PATH
109 $MAKE sanity-check-rm || fatal_ "rm wrapper doesn't work as expected"
111 $MAKE mostlyclean
112 ls -l . sub1 sub2
113 for i in 1 2; do
114 for j in a b c d e f; do
115 test ! -e sub$i/$j.o
116 test ! -e sub$i/$j.obj
117 test -f sub$i/$j.c || exit 99 # Sanity check
118 done
119 done
121 PATH=$oPATH; export PATH
122 rm -rf rm-wrap
124 $MAKE clean
125 $MAKE
126 test -f sub1/a.$OBJEXT
127 test -f sub2/d.$OBJEXT
129 $sleep
131 mv -f sub2/d.c sub2/x.c
132 rm -f sub1/a.c
134 sed -e '/ a1 ()/d' main.c > t
135 mv -f t main.c
137 sed -e '/sub1\/a\.c/d' -e 's|sub2/d\.c|sub2/x.c|' Makefile.am > t
138 mv -f t Makefile.am
140 using_gmake || $MAKE Makefile
141 $MAKE
142 test -f sub2/x.$OBJEXT
144 # The stale objects are still there after a mere "make all" ...
145 test -f sub1/a.$OBJEXT
146 test -f sub2/a.$OBJEXT
148 # ... but they get removed by "make mostlyclean" ...
149 $MAKE mostlyclean
150 test ! -e sub1/a.$OBJEXT
151 test ! -e sub2/d.$OBJEXT
153 # ... and do not get rebuilt ...
154 $MAKE clean
155 $MAKE all
156 test ! -e sub1/a.$OBJEXT
157 test ! -e sub2/d.$OBJEXT
159 # ... while the non-stale files do.
160 test -f sub1/b.$OBJEXT
161 test -f sub2/x.$OBJEXT