tests: remove recipes that run tests with 'prove'
[platform/upstream/automake.git] / t / vala-vpath.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 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 to make sure vala support handles from-scratch VPATH builds.
18 # See automake bug#8753.
19
20 required="valac GNUmake"
21 . ./defs || Exit 1
22
23 cat >> configure.ac << 'END'
24 AC_CONFIG_SRCDIR([hello.vala])
25 AC_PROG_CC
26 AM_PROG_VALAC([0.7.3])
27 AC_OUTPUT
28 END
29
30 cat > Makefile.am <<'END'
31 bin_PROGRAMS = foo
32 foo_VALAFLAGS = --profile=posix
33 foo_SOURCES = hello.vala
34 END
35
36 cat > hello.vala <<'END'
37 void main ()
38 {
39   stdout.printf ("foofoofoo\n");
40 }
41 END
42
43 $ACLOCAL  || framework_failure_ "aclocal error"
44 $AUTOCONF || framework_failure_ "autoconf error"
45 $AUTOMAKE || framework_failure_ "automake error"
46
47 mkdir build
48 cd build
49 ../configure || Exit 77
50 $MAKE
51 grep foofoofoo ../hello.c
52 $MAKE distcheck
53
54 # Rebuild rules work also in VPATH builds.
55 cat > ../hello.vala <<'END'
56 int main ()
57 {
58   stdout.printf ("barbarbar\n");
59   return 0;
60 }
61 END
62
63 $MAKE
64 grep barbarbar ../hello.c
65
66 # Rebuild rules are not uselessly triggered.
67 $MAKE -q
68 $MAKE -n | grep '\.stamp' && Exit 1
69
70 :