Add pthread-related tests.
[bpt/guile.git] / test-suite / standalone / Makefile.am
CommitLineData
d7a88afe
KR
1## Process this file with automake to produce Makefile.in.
2##
2ddf0851
LC
3## Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4## 2011 Free Software Foundation, Inc.
d7a88afe
KR
5##
6## This file is part of GUILE.
7##
53befeb7
NJ
8## GUILE is free software; you can redistribute it and/or modify it
9## under the terms of the GNU Lesser General Public License as
10## published by the Free Software Foundation; either version 3, or
11## (at your option) any later version.
d7a88afe 12##
53befeb7
NJ
13## GUILE is distributed in the hope that it will be useful, but
14## WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16## GNU Lesser General Public License for more details.
d7a88afe 17##
53befeb7
NJ
18## You should have received a copy of the GNU Lesser General Public
19## License along with GUILE; see the file COPYING.LESSER. If not,
20## write to the Free Software Foundation, Inc., 51 Franklin Street,
21## Fifth Floor, Boston, MA 02110-1301 USA
d7a88afe 22
a572fc95 23include $(top_srcdir)/am/snarf
6405ae86
RB
24
25# initializations so we can use += below.
26TESTS =
27noinst_LTLIBRARIES =
28check_PROGRAMS =
29check_SCRIPTS =
30BUILT_SOURCES =
56ae2148 31EXTRA_DIST =
6405ae86 32
e4ca305f 33TESTS_ENVIRONMENT = \
5b98517a 34 builddir="$(builddir)" \
e4ca305f 35 GUILE_AUTO_COMPILE=0 "${top_builddir}/meta/uninstalled-env"
6405ae86 36
a6648037
KR
37## Check for headers in $(srcdir) and bulid dir before $(CPPFLAGS), which
38## may point us to an old, installed version of guile.
39AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
40 -I$(top_srcdir)/lib -I$(top_builddir)/lib
41
eedcb08a 42test_cflags = \
a6648037 43 -I$(top_srcdir)/test-suite/standalone -I. \
bfb2e113 44 $(EXTRA_DEFS) $(GUILE_CFLAGS) $(GCC_CFLAGS)
ae90bbb5 45
7108b7b8 46AM_LDFLAGS = $(GUILE_CFLAGS)
6405ae86 47
6a94e6e1
LC
48# How to link with libguile (same as `Libs' in `guile-2.0.pc'.)
49LIBGUILE_LDADD = \
50 ${top_builddir}/libguile/libguile-@GUILE_EFFECTIVE_VERSION@.la \
51 $(BDW_GC_LIBS)
52
53
a6648037
KR
54snarfcppopts = \
55 -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib -I$(top_builddir) \
56 -I. $(DEFS) $(DEFAULT_INCLUDES) $(CPPFLAGS) $(CFLAGS)
eedcb08a 57
23d72566
KR
58SUFFIXES = .x
59.c.x:
a572fc95 60 $(AM_V_SNARF)$(GUILE_SNARF) -o $@ $< $(snarfcppopts)
6405ae86 61
8f9ae7fd 62CLEANFILES = *.x
6405ae86
RB
63
64.DELETE_ON_ERROR:
65
060ffedf
RB
66check_SCRIPTS += test-system-cmds
67TESTS += test-system-cmds
68
d69668b7
NJ
69check_SCRIPTS += test-bad-identifiers
70TESTS += test-bad-identifiers
71
87681707
RB
72check_SCRIPTS += test-require-extension
73TESTS += test-require-extension
74
2dea6a4d
BT
75check_SCRIPTS += test-guile-snarf
76TESTS += test-guile-snarf
77
6405ae86
RB
78# test-num2integral
79test_num2integral_SOURCES = test-num2integral.c
80test_num2integral_CFLAGS = ${test_cflags}
6a94e6e1 81test_num2integral_LDADD = $(LIBGUILE_LDADD)
6405ae86
RB
82check_PROGRAMS += test-num2integral
83TESTS += test-num2integral
84
be4381fa
KR
85# test-round
86test_round_CFLAGS = ${test_cflags}
6a94e6e1 87test_round_LDADD = $(LIBGUILE_LDADD)
be4381fa
KR
88check_PROGRAMS += test-round
89TESTS += test-round
90
2ddf0851
LC
91if HAVE_SHARED_LIBRARIES
92
6405ae86
RB
93# test-asmobs
94noinst_LTLIBRARIES += libtest-asmobs.la
a150c156 95libtest_asmobs_la_SOURCES = test-asmobs-lib.c
6405ae86 96libtest_asmobs_la_CFLAGS = ${test_cflags}
cb26e97a 97libtest_asmobs_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will really build an .so
6a94e6e1 98libtest_asmobs_la_LIBADD = $(LIBGUILE_LDADD)
8f9ae7fd 99BUILT_SOURCES += test-asmobs-lib.x
6405ae86
RB
100check_SCRIPTS += test-asmobs
101TESTS += test-asmobs
102
37371ea1
AW
103# test-ffi
104noinst_LTLIBRARIES += libtest-ffi.la
a150c156 105libtest_ffi_la_SOURCES = test-ffi-lib.c
37371ea1 106libtest_ffi_la_CFLAGS = ${test_cflags}
cb26e97a 107libtest_ffi_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will really build an .so
6a94e6e1 108libtest_ffi_la_LIBADD = $(LIBGUILE_LDADD)
37371ea1
AW
109check_SCRIPTS += test-ffi
110TESTS += test-ffi
111
2ddf0851
LC
112endif HAVE_SHARED_LIBRARIES
113
d7a88afe
KR
114# test-list
115test_list_SOURCES = test-list.c
116test_list_CFLAGS = ${test_cflags}
6a94e6e1 117test_list_LDADD = $(LIBGUILE_LDADD)
d7a88afe
KR
118check_PROGRAMS += test-list
119TESTS += test-list
120
3c8fb18e
MV
121# test-unwind
122test_unwind_SOURCES = test-unwind.c
123test_unwind_CFLAGS = ${test_cflags}
6a94e6e1 124test_unwind_LDADD = $(LIBGUILE_LDADD)
3c8fb18e
MV
125check_PROGRAMS += test-unwind
126TESTS += test-unwind
127
2aac7a48
MV
128# test-conversion
129test_conversion_SOURCES = test-conversion.c
130test_conversion_CFLAGS = ${test_cflags}
6a94e6e1 131test_conversion_LDADD = $(LIBGUILE_LDADD)
2aac7a48
MV
132check_PROGRAMS += test-conversion
133TESTS += test-conversion
134
440ae510
NJ
135# test-loose-ends
136test_loose_ends_SOURCES = test-loose-ends.c
137test_loose_ends_CFLAGS = ${test_cflags}
6a94e6e1 138test_loose_ends_LDADD = $(LIBGUILE_LDADD)
440ae510
NJ
139check_PROGRAMS += test-loose-ends
140TESTS += test-loose-ends
141
a9931e4e
NJ
142# test-fast-slot-ref
143check_SCRIPTS += test-fast-slot-ref
144TESTS += test-fast-slot-ref
145
f80ed1be
AW
146# test-mb-regexp
147check_SCRIPTS += test-mb-regexp
148TESTS += test-mb-regexp
149
23d72566 150# test-use-srfi
4505fbb1 151check_SCRIPTS += test-use-srfi
23d72566
KR
152TESTS += test-use-srfi
153
8e7ff773
LC
154# test-scm-c-read
155test_scm_c_read_SOURCES = test-scm-c-read.c
156test_scm_c_read_CFLAGS = ${test_cflags}
6a94e6e1 157test_scm_c_read_LDADD = $(LIBGUILE_LDADD)
8e7ff773
LC
158check_PROGRAMS += test-scm-c-read
159TESTS += test-scm-c-read
160
05588a1a
LC
161# test-scm-take-locale-symbol
162test_scm_take_locale_symbol_SOURCES = test-scm-take-locale-symbol.c
163test_scm_take_locale_symbol_CFLAGS = ${test_cflags}
6a94e6e1 164test_scm_take_locale_symbol_LDADD = $(LIBGUILE_LDADD)
05588a1a
LC
165check_PROGRAMS += test-scm-take-locale-symbol
166TESTS += test-scm-take-locale-symbol
167
f538a070
LC
168# test-scm-take-u8vector
169test_scm_take_u8vector_SOURCES = test-scm-take-u8vector.c
170test_scm_take_u8vector_CFLAGS = ${test_cflags}
6a94e6e1 171test_scm_take_u8vector_LDADD = $(LIBGUILE_LDADD)
f538a070
LC
172check_PROGRAMS += test-scm-take-u8vector
173TESTS += test-scm-take-u8vector
174
2ddf0851
LC
175if HAVE_SHARED_LIBRARIES
176
a44c4336
AW
177# test-extensions
178noinst_LTLIBRARIES += libtest-extensions.la
179libtest_extensions_la_SOURCES = test-extensions-lib.c
180libtest_extensions_la_CFLAGS = ${test_cflags}
cb26e97a 181libtest_extensions_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will really build an .so
6a94e6e1 182libtest_extensions_la_LIBADD = $(LIBGUILE_LDADD)
a44c4336
AW
183check_SCRIPTS += test-extensions
184TESTS += test-extensions
185
2ddf0851
LC
186endif HAVE_SHARED_LIBRARIES
187
56ae2148
LC
188if BUILD_PTHREAD_SUPPORT
189
3ac8359a
NJ
190# test-with-guile-module
191test_with_guile_module_CFLAGS = ${test_cflags}
6a94e6e1 192test_with_guile_module_LDADD = $(LIBGUILE_LDADD)
3ac8359a
NJ
193check_PROGRAMS += test-with-guile-module
194TESTS += test-with-guile-module
195
ccf1ca4a 196test_scm_with_guile_CFLAGS = ${test_cflags}
6a94e6e1 197test_scm_with_guile_LDADD = $(LIBGUILE_LDADD)
ccf1ca4a
LC
198check_PROGRAMS += test-scm-with-guile
199TESTS += test-scm-with-guile
200
4a235623
LC
201test_scm_spawn_thread_CFLAGS = ${test_cflags}
202test_scm_spawn_thread_LDADD = $(LIBGUILE_LDADD)
203check_PROGRAMS += test-scm-spawn-thread
204TESTS += test-scm-spawn-thread
205
206test_pthread_create_CFLAGS = ${test_cflags}
207test_pthread_create_LDADD = $(LIBGUILE_LDADD)
208check_PROGRAMS += test-pthread-create
209TESTS += test-pthread-create
210
211test_pthread_create_secondary_CFLAGS = ${test_cflags} $(BDW_GC_CFLAGS)
212test_pthread_create_secondary_LDADD = $(LIBGUILE_LDADD)
213check_PROGRAMS += test-pthread-create-secondary
214TESTS += test-pthread-create-secondary
215
56ae2148
LC
216else
217
ccf1ca4a 218EXTRA_DIST += test-with-guile-module.c test-scm-with-guile.c
56ae2148
LC
219
220endif
221
56ae2148 222EXTRA_DIST += ${check_SCRIPTS}