2 # Copyright (C) 1998, 2001, 2002, 2004, 2007 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.
24 cat >> configure.
in <<'END'
28 cat > Makefile.am
<< 'END'
29 javadir
= $
(datadir
)/java
31 java_JAVA
= Class.java
32 dist_java_JAVA
= ClassDist.java
33 nodist_java_JAVA
= ClassNodist.java
35 nobase_java_JAVA
= ClassNobase.java
36 nobase_dist_java_JAVA
= ClassNobaseDist.java
37 nobase_nodist_java_JAVA
= ClassNobaseNodist.java
40 for base
in '' Nobase
; do
41 for dist
in '' Dist Nodist
; do
42 echo "class Class$base$dist {}" > Class
$base$dist.java
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
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
65 test -f classjava2.stamp
66 test -f classdist_java.stamp