tests: avoid a spurious failure on MSYS
[platform/upstream/automake.git] / t / java-sources.sh
1 #! /bin/sh
2 # Copyright (C) 2011-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 definition of automake-generated private Makefile variable
18 # '$(am__java_sources)'.
19
20 . test-init.sh
21
22 cat >> configure.ac << 'END'
23 AC_OUTPUT
24 END
25
26 cat > Makefile.am << 'END'
27 foodir = $(prefix)
28
29 foo_JAVA = a.java
30 dist_foo_JAVA = b.java
31 nodist_foo_JAVA = c.java
32 nobase_foo_JAVA = d.java
33 nobase_dist_foo_JAVA = e.java
34 nobase_nodist_foo_JAVA = f.java
35
36 .PHONY: debug
37 debug:
38         @echo 'am__java_sources: "$(am__java_sources)"'
39 got:
40         @lst='$(am__java_sources)'; \
41          for f in $$lst; do echo $$f; done | sort > $@
42 END
43
44 $ACLOCAL
45 $AUTOMAKE
46 $AUTOCONF
47
48 cat > exp << 'END'
49 a.java
50 b.java
51 c.java
52 d.java
53 e.java
54 f.java
55 END
56
57 ./configure
58 $MAKE debug
59 $MAKE got
60
61 cat got
62 cat exp
63 diff exp got
64
65 :