SRFI-9: Make accessors inlinable.
[bpt/guile.git] / test-suite / Makefile.am
CommitLineData
f14d16ed
KR
1## Process this file with automake to produce Makefile.in.
2##
e47096d9 3## Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Software Foundation, Inc.
f14d16ed
KR
4##
5## This file is part of GUILE.
6##
53befeb7
NJ
7## GUILE is free software; you can redistribute it and/or modify it
8## under the terms of the GNU Lesser General Public License as
9## published by the Free Software Foundation; either version 3, or
10## (at your option) any later version.
f14d16ed 11##
53befeb7
NJ
12## GUILE is distributed in the hope that it will be useful, but
13## WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15## GNU Lesser General Public License for more details.
f14d16ed 16##
53befeb7
NJ
17## You should have received a copy of the GNU Lesser General Public
18## License along with GUILE; see the file COPYING.LESSER. If not,
19## write to the Free Software Foundation, Inc., 51 Franklin Street,
20## Fifth Floor, Boston, MA 02110-1301 USA
f14d16ed 21
b4559de7 22SUBDIRS = standalone
c62fdb8e 23
68254263 24SCM_TESTS = tests/alist.test \
16e0c623 25 tests/and-let-star.test \
4f21b9e8 26 tests/arbiters.test \
53e28ed9 27 tests/asm-to-bytecode.test \
68254263 28 tests/bit-operations.test \
8753fd53 29 tests/brainfuck.test \
1ee2c72e 30 tests/bytevectors.test \
68254263
MV
31 tests/c-api.test \
32 tests/chars.test \
33 tests/common-list.test \
a3163568 34 tests/continuations.test \
3d1a89b9 35 tests/elisp.test \
74c009da 36 tests/elisp-compiler.text \
25512a94 37 tests/elisp-reader.text \
68254263
MV
38 tests/eval.test \
39 tests/exceptions.test \
5e9456e3 40 tests/filesys.test \
68254263 41 tests/format.test \
7b93c2e5 42 tests/fractions.test \
8ab3d8a0 43 tests/ftw.test \
68254263
MV
44 tests/gc.test \
45 tests/getopt-long.test \
46 tests/goops.test \
47 tests/guardians.test \
08ee6abd 48 tests/hash.test \
68254263 49 tests/hooks.test \
b89c4943 50 tests/i18n.test \
68254263
MV
51 tests/import.test \
52 tests/interp.test \
440ae510 53 tests/keywords.test \
68254263
MV
54 tests/list.test \
55 tests/load.test \
6e7d5622 56 tests/modules.test \
68254263
MV
57 tests/multilingual.nottest \
58 tests/numbers.test \
59 tests/optargs.test \
d2864c8a 60 tests/options.test \
e47096d9 61 tests/procprop.test \
c42605e9 62 tests/poe.test \
3bdc8f4d 63 tests/popen.test \
68254263 64 tests/ports.test \
72a3671e 65 tests/posix.test \
e130b09f 66 tests/q.test \
68254263 67 tests/r4rs.test \
c18140cf 68 tests/r5rs_pitfall.test \
1ee2c72e 69 tests/r6rs-ports.test \
2c0ddf44 70 tests/ramap.test \
68254263 71 tests/reader.test \
16e0c623 72 tests/receive.test \
68254263 73 tests/regexp.test \
09d978f3 74 tests/signals.test \
32938e4d 75 tests/socket.test \
eb6c635a 76 tests/srcprop.test \
d31350ff 77 tests/srfi-1.test \
ab32320d 78 tests/srfi-6.test \
68254263 79 tests/srfi-10.test \
cd858a31 80 tests/srfi-11.test \
68254263
MV
81 tests/srfi-13.test \
82 tests/srfi-14.test \
83 tests/srfi-19.test \
012a3a75 84 tests/srfi-26.test \
dfedf226 85 tests/srfi-31.test \
a1a5dfa8 86 tests/srfi-34.test \
f50ca8da 87 tests/srfi-35.test \
d4c38221 88 tests/srfi-37.test \
2b78075b 89 tests/srfi-39.test \
bf04b1a3 90 tests/srfi-60.test \
1317062f 91 tests/srfi-69.test \
189681f5 92 tests/srfi-88.test \
68254263
MV
93 tests/srfi-4.test \
94 tests/srfi-9.test \
95 tests/strings.test \
d15ad007 96 tests/structs.test \
68254263
MV
97 tests/symbols.test \
98 tests/syncase.test \
99 tests/syntax.test \
72a3671e 100 tests/threads.test \
68254263 101 tests/time.test \
ce09ee19 102 tests/tree-il.test \
aa529137 103 tests/unif.test \
68254263
MV
104 tests/version.test \
105 tests/weaks.test
83060bc4 106
3c540af4
MV
107SCM_TESTS_DIRS = tests/asmobs \
108 tests/c-api
109
61db429e 110EXTRA_DIST = guile-test lib.scm $(SCM_TESTS) ChangeLog-2008
3c540af4
MV
111
112## Automake should be able to handle the distribution of tests/asmobs
113## etc without any help, but not all version can handle 'deep'
114## directories. So we do it on our own.
115dist-hook:
116 for d in $(SCM_TESTS_DIRS); do \
117 cp -pR $(srcdir)/$$d $(distdir)/$$d; \
d9f352d4 118 rm -rf $(distdir)/$$d/CVS; \
3c540af4 119 done