(SCM_TESTS): add tests/srfi-31.scm.
[bpt/guile.git] / test-suite / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2 ##
3 ## Copyright 2001, 2002, 2003, 2004 Software Foundation, Inc.
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
22 SUBDIRS = standalone
23
24 SCM_TESTS = tests/alist.test \
25 tests/bit-operations.test \
26 tests/c-api.test \
27 tests/chars.test \
28 tests/common-list.test \
29 tests/continuations.test \
30 tests/elisp.test \
31 tests/environments.test \
32 tests/eval.test \
33 tests/exceptions.test \
34 tests/format.test \
35 tests/fractions.test \
36 tests/gc.test \
37 tests/getopt-long.test \
38 tests/goops.test \
39 tests/guardians.test \
40 tests/hooks.test \
41 tests/import.test \
42 tests/interp.test \
43 tests/list.test \
44 tests/load.test \
45 tests/multilingual.nottest \
46 tests/numbers.test \
47 tests/optargs.test \
48 tests/options.test \
49 tests/poe.test \
50 tests/popen.test \
51 tests/ports.test \
52 tests/posix.test \
53 tests/q.test \
54 tests/r4rs.test \
55 tests/r5rs_pitfall.test \
56 tests/reader.test \
57 tests/regexp.test \
58 tests/socket.test \
59 tests/srcprop.test \
60 tests/srfi-1.test \
61 tests/srfi-6.test \
62 tests/srfi-10.test \
63 tests/srfi-11.test \
64 tests/srfi-13.test \
65 tests/srfi-14.test \
66 tests/srfi-19.test \
67 tests/srfi-26.test \
68 tests/srfi-31.test \
69 tests/srfi-34.test \
70 tests/srfi-4.test \
71 tests/srfi-9.test \
72 tests/strings.test \
73 tests/symbols.test \
74 tests/syncase.test \
75 tests/syntax.test \
76 tests/threads.test \
77 tests/time.test \
78 tests/unif.test \
79 tests/version.test \
80 tests/weaks.test
81
82 SCM_TESTS_DIRS = tests/asmobs \
83 tests/c-api
84
85 EXTRA_DIST = guile-test lib.scm $(SCM_TESTS)
86
87 ## Automake should be able to handle the distribution of tests/asmobs
88 ## etc without any help, but not all version can handle 'deep'
89 ## directories. So we do it on our own.
90 dist-hook:
91 for d in $(SCM_TESTS_DIRS); do \
92 cp -pR $(srcdir)/$$d $(distdir)/$$d; \
93 rm -rf $(distdir)/$$d/CVS; \
94 done