tests: work around strangeness in MSYS
[automake.git] / tests / vala-vpath.test
blob9db9de0c7a3429c0dafaa5913f5b62467999d6f5
1 #! /bin/sh
2 # Copyright (C) 2011 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)
7 # any later version.
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 to make sure vala support handles from-scratch VPATH builds.
18 # See automake bug#8753.
20 required="valac"
21 . ./defs || Exit 1
23 mkdir src
25 cat >> configure.in << 'END'
26 AC_CONFIG_SRCDIR([hello.vala])
27 AC_PROG_CC
28 AM_PROG_VALAC([0.7])
29 AC_OUTPUT
30 END
33 cat > Makefile.am <<'END'
34 bin_PROGRAMS = foo
35 foo_SOURCES = hello.vala
36 END
38 cat > hello.vala <<'END'
39 void main ()
41 stdout.printf ("foo\n");
42 return 0;
44 END
46 $ACLOCAL || framework_failure_ "aclocal error"
47 $AUTOCONF || framework_failure_ "autoconf error"
48 $AUTOMAKE || framework_failure_ "automake error"
50 mkdir build
51 cd build
52 ../configure || Exit 77
53 $MAKE
54 $MAKE distcheck