tests: expose automake bug#13940
[platform/upstream/automake.git] / t / java-clean.sh
1 #! /bin/sh
2 # Copyright (C) 1998-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 cleaning of Java class files and timestamps.
18
19 required=javac
20 . test-init.sh
21
22 cat >> configure.ac <<'END'
23 AC_OUTPUT
24 END
25
26 cat > Makefile.am << 'END'
27 javadir = $(datadir)/java
28
29 java_JAVA = Class.java
30 dist_java_JAVA = ClassDist.java
31 nodist_java_JAVA = ClassNodist.java
32
33 nobase_java_JAVA = ClassNobase.java
34 nobase_dist_java_JAVA = ClassNobaseDist.java
35 nobase_nodist_java_JAVA = ClassNobaseNodist.java
36 END
37
38 for base in '' Nobase; do
39   for dist in '' Dist Nodist; do
40     echo "class Class$base$dist {}" > Class$base$dist.java
41   done
42 done
43
44 $ACLOCAL
45 $AUTOCONF
46 $AUTOMAKE
47
48 ./configure
49 $MAKE
50 ls -l
51 test -f classjava.stamp
52 for base in '' Nobase; do
53   for dist in '' Dist Nodist; do
54     test -f Class$base$dist.class
55   done
56 done
57 $MAKE clean
58 find . -name '*.class' -o -name '*.stamp' | grep . && exit 1
59 # We should not remove unrelated stamp files.
60 echo timestamp > classjava2.stamp
61 echo timestamp > classdist_java.stamp
62 $MAKE clean
63 test -f classjava2.stamp
64 test -f classdist_java.stamp
65
66 :