New file.
[bpt/guile.git] / test-suite / Makefile.am
CommitLineData
f14d16ed
KR
1## Process this file with automake to produce Makefile.in.
2##
2b78075b 3## Copyright 2001, 2002, 2003, 2004, 2005 Software Foundation, Inc.
f14d16ed
KR
4##
5## This file is part of GUILE.
6##
7## GUILE is free software; you can redistribute it and/or modify
8## it under the terms of the GNU General Public License as
9## published by the Free Software Foundation; either version 2, or
10## (at your option) any later version.
11##
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 General Public License for more details.
16##
17## You should have received a copy of the GNU General Public
18## License along with GUILE; see the file COPYING. If not, write
19## to the Free Software Foundation, Inc., 59 Temple Place, Suite
20## 330, Boston, MA 02111-1307 USA
21
b4559de7 22SUBDIRS = standalone
c62fdb8e 23
68254263 24SCM_TESTS = tests/alist.test \
16e0c623 25 tests/and-let-star.test \
4f21b9e8 26 tests/arbiters.test \
68254263 27 tests/bit-operations.test \
68254263
MV
28 tests/c-api.test \
29 tests/chars.test \
30 tests/common-list.test \
a3163568 31 tests/continuations.test \
3d1a89b9 32 tests/elisp.test \
68254263
MV
33 tests/environments.test \
34 tests/eval.test \
35 tests/exceptions.test \
5e9456e3 36 tests/filesys.test \
68254263 37 tests/format.test \
7b93c2e5 38 tests/fractions.test \
68254263
MV
39 tests/gc.test \
40 tests/getopt-long.test \
41 tests/goops.test \
42 tests/guardians.test \
08ee6abd 43 tests/hash.test \
68254263
MV
44 tests/hooks.test \
45 tests/import.test \
46 tests/interp.test \
47 tests/list.test \
48 tests/load.test \
49 tests/multilingual.nottest \
50 tests/numbers.test \
51 tests/optargs.test \
d2864c8a 52 tests/options.test \
c42605e9 53 tests/poe.test \
3bdc8f4d 54 tests/popen.test \
68254263 55 tests/ports.test \
72a3671e 56 tests/posix.test \
e130b09f 57 tests/q.test \
68254263 58 tests/r4rs.test \
c18140cf 59 tests/r5rs_pitfall.test \
2c0ddf44 60 tests/ramap.test \
68254263 61 tests/reader.test \
16e0c623 62 tests/receive.test \
68254263 63 tests/regexp.test \
a015df9b 64 tests/slib.test \
32938e4d 65 tests/socket.test \
eb6c635a 66 tests/srcprop.test \
d31350ff 67 tests/srfi-1.test \
ab32320d 68 tests/srfi-6.test \
68254263 69 tests/srfi-10.test \
cd858a31 70 tests/srfi-11.test \
68254263
MV
71 tests/srfi-13.test \
72 tests/srfi-14.test \
73 tests/srfi-19.test \
012a3a75 74 tests/srfi-26.test \
dfedf226 75 tests/srfi-31.test \
a1a5dfa8 76 tests/srfi-34.test \
2b78075b 77 tests/srfi-39.test \
68254263
MV
78 tests/srfi-4.test \
79 tests/srfi-9.test \
80 tests/strings.test \
81 tests/symbols.test \
82 tests/syncase.test \
83 tests/syntax.test \
72a3671e 84 tests/threads.test \
68254263 85 tests/time.test \
aa529137 86 tests/unif.test \
68254263
MV
87 tests/version.test \
88 tests/weaks.test
83060bc4 89
3c540af4
MV
90SCM_TESTS_DIRS = tests/asmobs \
91 tests/c-api
92
68254263 93EXTRA_DIST = guile-test lib.scm $(SCM_TESTS)
3c540af4
MV
94
95## Automake should be able to handle the distribution of tests/asmobs
96## etc without any help, but not all version can handle 'deep'
97## directories. So we do it on our own.
98dist-hook:
99 for d in $(SCM_TESTS_DIRS); do \
100 cp -pR $(srcdir)/$$d $(distdir)/$$d; \
d9f352d4 101 rm -rf $(distdir)/$$d/CVS; \
3c540af4 102 done