Implemented macros in elisp compiler.
[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, 2008, 2009 Software Foundation, Inc.
4 ##
5 ## This file is part of GUILE.
6 ##
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.
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 Lesser General Public License for more details.
16 ##
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
21
22 SUBDIRS = standalone
23
24 SCM_TESTS = tests/alist.test \
25 tests/and-let-star.test \
26 tests/arbiters.test \
27 tests/asm-to-bytecode.test \
28 tests/bit-operations.test \
29 tests/bytevectors.test \
30 tests/c-api.test \
31 tests/chars.test \
32 tests/common-list.test \
33 tests/continuations.test \
34 tests/elisp.test \
35 tests/elisp-compiler.text \
36 tests/environments.test \
37 tests/eval.test \
38 tests/exceptions.test \
39 tests/filesys.test \
40 tests/format.test \
41 tests/fractions.test \
42 tests/ftw.test \
43 tests/gc.test \
44 tests/getopt-long.test \
45 tests/goops.test \
46 tests/guardians.test \
47 tests/hash.test \
48 tests/hooks.test \
49 tests/i18n.test \
50 tests/import.test \
51 tests/interp.test \
52 tests/list.test \
53 tests/load.test \
54 tests/modules.test \
55 tests/multilingual.nottest \
56 tests/numbers.test \
57 tests/optargs.test \
58 tests/options.test \
59 tests/procprop.test \
60 tests/poe.test \
61 tests/popen.test \
62 tests/ports.test \
63 tests/posix.test \
64 tests/q.test \
65 tests/r4rs.test \
66 tests/r5rs_pitfall.test \
67 tests/r6rs-ports.test \
68 tests/ramap.test \
69 tests/reader.test \
70 tests/receive.test \
71 tests/regexp.test \
72 tests/socket.test \
73 tests/srcprop.test \
74 tests/srfi-1.test \
75 tests/srfi-6.test \
76 tests/srfi-10.test \
77 tests/srfi-11.test \
78 tests/srfi-13.test \
79 tests/srfi-14.test \
80 tests/srfi-19.test \
81 tests/srfi-26.test \
82 tests/srfi-31.test \
83 tests/srfi-34.test \
84 tests/srfi-35.test \
85 tests/srfi-37.test \
86 tests/srfi-39.test \
87 tests/srfi-60.test \
88 tests/srfi-69.test \
89 tests/srfi-88.test \
90 tests/srfi-4.test \
91 tests/srfi-9.test \
92 tests/strings.test \
93 tests/structs.test \
94 tests/symbols.test \
95 tests/syncase.test \
96 tests/syntax.test \
97 tests/threads.test \
98 tests/time.test \
99 tests/tree-il.test \
100 tests/unif.test \
101 tests/version.test \
102 tests/weaks.test
103
104 SCM_TESTS_DIRS = tests/asmobs \
105 tests/c-api
106
107 EXTRA_DIST = guile-test lib.scm $(SCM_TESTS) ChangeLog-2008
108
109 ## Automake should be able to handle the distribution of tests/asmobs
110 ## etc without any help, but not all version can handle 'deep'
111 ## directories. So we do it on our own.
112 dist-hook:
113 for d in $(SCM_TESTS_DIRS); do \
114 cp -pR $(srcdir)/$$d $(distdir)/$$d; \
115 rm -rf $(distdir)/$$d/CVS; \
116 done