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