2 # Copyright (C) 2012 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 and that vapi files are correctly handled by Vala support.
19 required
='pkg-config valac cc GNUmake'
22 cat >> configure.ac
<<'END'
25 AM_PROG_VALAC([0.7.3])
26 PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.4])
30 cat > Makefile.am
<<'END'
32 AM_CFLAGS = $(GOBJECT_CFLAGS)
33 LDADD = $(GOBJECT_LIBS)
34 zardoz_SOURCES = zardoz.vala foo.vapi foo.h
37 cat > zardoz.vala
<<'END'
40 public static void main () {
41 stdout.printf (BARBAR);
46 # Use printf, not echo, to avoid '\n' being considered and escape
47 # sequence and printed as a newline in 'foo.h'.
48 printf '%s\n' '#define BARBAR "Zardoz!\n"' > foo.h
50 cat > foo.vapi
<<'END'
51 [CCode (cprefix="", lower_case_cprefix="", cheader_filename="foo.h")]
52 public const string BARBAR;
55 if ! cross_compiling
; then
56 unindent
>> Makefile.am
<<'END'
61 ./zardoz | grep 'Zardoz!'
64 ./zardoz | grep 'Quux!'
72 .
/configure
--enable-dependency-tracking
75 ls -l # For debugging.
76 cat zardoz.c
# Likewise.
77 grep 'BARBAR' zardoz.c
78 cross_compiling ||
$MAKE test1 ||
exit 1
80 # Simple check on remake rules.
82 # Use printf, not echo, to avoid '\n' being considered and escape
83 # sequence and printed as a newline in 'foo.h'.
84 printf '%s\n' '#define BAZBAZ "Quux!\n"' > foo.h
85 sed 's/BARBAR/BAZBAZ/' zardoz.vala
> t
&& mv -f t zardoz.vala ||
exit 99
87 sed 's/BARBAR/BAZBAZ/' foo.vapi
> t
&& mv -f t foo.vapi ||
exit 99
89 cat zardoz.c
# For debugging.
90 grep 'BAZBAZ' zardoz.c
91 cross_compiling ||
$MAKE test2 ||
exit 1
93 # Check the distribution.