2 # Copyright (C) 1998-2012 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)
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 <http://www.gnu.org/licenses/>.
17 # Test cleaning of Java class files and timestamps.
22 cat >> configure.ac
<<'END'
26 cat > Makefile.am
<< 'END'
27 javadir
= $
(datadir
)/java
29 java_JAVA
= Class.java
30 dist_java_JAVA
= ClassDist.java
31 nodist_java_JAVA
= ClassNodist.java
33 nobase_java_JAVA
= ClassNobase.java
34 nobase_dist_java_JAVA
= ClassNobaseDist.java
35 nobase_nodist_java_JAVA
= ClassNobaseNodist.java
38 for base
in '' Nobase
; do
39 for dist
in '' Dist Nodist
; do
40 echo "class Class$base$dist {}" > Class
$base$dist.java
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
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
63 test -f classjava2.stamp
64 test -f classdist_java.stamp