]> git.donarmstrong.com Git - lilypond.git/blob - guile18/test-suite/Makefile.am
New upstream version 2.19.65
[lilypond.git] / guile18 / 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
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/environments.test             \
34             tests/eval.test                     \
35             tests/exceptions.test               \
36             tests/filesys.test                  \
37             tests/format.test                   \
38             tests/fractions.test                \
39             tests/ftw.test                      \
40             tests/gc.test                       \
41             tests/getopt-long.test              \
42             tests/goops.test                    \
43             tests/guardians.test                \
44             tests/hash.test                     \
45             tests/hooks.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/procprop.test                 \
56             tests/poe.test                      \
57             tests/popen.test                    \
58             tests/ports.test                    \
59             tests/posix.test                    \
60             tests/q.test                        \
61             tests/r4rs.test                     \
62             tests/r5rs_pitfall.test             \
63             tests/ramap.test                    \
64             tests/reader.test                   \
65             tests/receive.test                  \
66             tests/regexp.test                   \
67             tests/signals.test                  \
68             tests/socket.test                   \
69             tests/srcprop.test                  \
70             tests/srfi-1.test                   \
71             tests/srfi-6.test                   \
72             tests/srfi-10.test                  \
73             tests/srfi-11.test                  \
74             tests/srfi-13.test                  \
75             tests/srfi-14.test                  \
76             tests/srfi-19.test                  \
77             tests/srfi-26.test                  \
78             tests/srfi-31.test                  \
79             tests/srfi-34.test                  \
80             tests/srfi-35.test                  \
81             tests/srfi-37.test                  \
82             tests/srfi-39.test                  \
83             tests/srfi-60.test                  \
84             tests/srfi-69.test                  \
85             tests/srfi-88.test                  \
86             tests/srfi-4.test                   \
87             tests/srfi-9.test                   \
88             tests/strings.test                  \
89             tests/structs.test                  \
90             tests/symbols.test                  \
91             tests/syncase.test                  \
92             tests/syntax.test                   \
93             tests/threads.test                  \
94             tests/time.test                     \
95             tests/unif.test                     \
96             tests/version.test                  \
97             tests/weaks.test
98
99 SCM_TESTS_DIRS = tests/asmobs \
100                  tests/c-api
101
102 EXTRA_DIST = guile-test lib.scm $(SCM_TESTS) ChangeLog-2008
103
104 ## Automake should be able to handle the distribution of tests/asmobs
105 ## etc without any help, but not all version can handle 'deep'
106 ## directories.  So we do it on our own.
107 dist-hook:
108         for d in $(SCM_TESTS_DIRS); do \
109           cp -pR $(srcdir)/$$d $(distdir)/$$d; \
110           rm -rf $(distdir)/$$d/CVS; \
111         done