vala tests: source test-init.sh, not ./defs
[platform/upstream/automake.git] / t / vala-parallel.sh
1 #! /bin/sh
2 # Copyright (C) 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 # Vala support with parallel make.
18
19 required='valac cc GNUmake'
20 . test-init.sh
21
22 cat >> configure.ac <<'END'
23 AC_PROG_CC
24 AC_PROG_CXX
25 AM_PROG_VALAC([0.7.3])
26 AC_OUTPUT
27 END
28
29 cat > Makefile.am <<'END'
30 bin_PROGRAMS = zardoz
31 AM_VALAFLAGS = --profile=posix
32 zardoz_SOURCES = main.vala 1.vala 2.vala 3.vala 4.vala 5.vala 6.vala
33 END
34
35 echo 'int main () {' > main.vala
36 for i in 1 2 3 4 5 6; do
37   echo "void foo$i () { stdout.printf (\"ok $i\\n\"); }" > $i.vala
38   echo "foo$i ();" >> main.vala
39 done
40 echo 'return 0; }' >> main.vala
41
42 cat main.vala # For debugging.
43
44 $ACLOCAL
45 $AUTOMAKE -a
46 $AUTOCONF
47
48 ./configure
49
50 $MAKE -j3
51 ls -l # For debugging.
52 for x in main 1 2 3 4 5 6; do test -f $x.c; done
53 test -f  zardoz_vala.stamp
54
55 $MAKE maintainer-clean -j4
56 ls -l # For debugging.
57 for x in main 1 2 3 4 5 6; do test ! -e $x.c; done
58 test ! -e zardoz_vala.stamp
59
60 mkdir build
61 cd build
62 ../configure
63 $MAKE -j6
64 ls -l . .. # For debugging.
65 for x in main 1 2 3 4 5 6; do test -f ../$x.c; done
66 test -f ../zardoz_vala.stamp
67
68 $MAKE distcheck -j4
69
70 $MAKE maintainer-clean -j2
71 for x in main 1 2 3 4 5 6; do test ! -e ../$x.c; done
72 test ! -e ../zardoz_vala.stamp
73
74 :