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