Add Boucher's `lalr-scm' as the `(system base lalr)' module.
[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, 2010 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/arrays.test \
28 tests/asm-to-bytecode.test \
29 tests/bit-operations.test \
30 tests/brainfuck.test \
31 tests/bytevectors.test \
32 tests/c-api.test \
33 tests/chars.test \
34 tests/common-list.test \
35 tests/control.test \
36 tests/continuations.test \
37 tests/elisp.test \
38 tests/elisp-compiler.test \
39 tests/elisp-reader.test \
40 tests/eval.test \
41 tests/exceptions.test \
42 tests/filesys.test \
43 tests/fluids.test \
44 tests/format.test \
45 tests/fractions.test \
46 tests/ftw.test \
47 tests/gc.test \
48 tests/getopt-long.test \
49 tests/goops.test \
50 tests/guardians.test \
51 tests/hash.test \
52 tests/hooks.test \
53 tests/i18n.test \
54 tests/import.test \
55 tests/interp.test \
56 tests/keywords.test \
57 tests/list.test \
58 tests/load.test \
59 tests/modules.test \
60 tests/multilingual.nottest \
61 tests/net-db.test \
62 tests/numbers.test \
63 tests/optargs.test \
64 tests/options.test \
65 tests/print.test \
66 tests/procprop.test \
67 tests/poe.test \
68 tests/popen.test \
69 tests/ports.test \
70 tests/posix.test \
71 tests/q.test \
72 tests/r4rs.test \
73 tests/r5rs_pitfall.test \
74 tests/r6rs-ports.test \
75 tests/ramap.test \
76 tests/reader.test \
77 tests/receive.test \
78 tests/regexp.test \
79 tests/signals.test \
80 tests/socket.test \
81 tests/srcprop.test \
82 tests/srfi-1.test \
83 tests/srfi-6.test \
84 tests/srfi-10.test \
85 tests/srfi-11.test \
86 tests/srfi-13.test \
87 tests/srfi-14.test \
88 tests/srfi-19.test \
89 tests/srfi-26.test \
90 tests/srfi-31.test \
91 tests/srfi-34.test \
92 tests/srfi-35.test \
93 tests/srfi-37.test \
94 tests/srfi-39.test \
95 tests/srfi-60.test \
96 tests/srfi-69.test \
97 tests/srfi-88.test \
98 tests/srfi-4.test \
99 tests/srfi-9.test \
100 tests/statprof.test \
101 tests/strings.test \
102 tests/structs.test \
103 tests/sxml.fold.test \
104 tests/sxml.ssax.test \
105 tests/sxml.transform.test \
106 tests/sxml.xpath.test \
107 tests/symbols.test \
108 tests/syncase.test \
109 tests/syntax.test \
110 tests/texinfo.test \
111 tests/texinfo.docbook.test \
112 tests/texinfo.serialize.test \
113 tests/texinfo.string-utils.test \
114 tests/threads.test \
115 tests/time.test \
116 tests/tree-il.test \
117 tests/unif.test \
118 tests/version.test \
119 tests/vlist.test \
120 tests/weaks.test
121
122 EXTRA_DIST = guile-test lib.scm $(SCM_TESTS) ChangeLog-2008
123
124 \f
125 # Test suite of Dominique Boucher's `lalr-scm'.
126 # From http://code.google.com/p/lalr-scm/.
127
128 LALR_TESTS = \
129 lalr/test-glr-associativity.scm \
130 lalr/test-glr-basics-01.scm \
131 lalr/test-glr-basics-02.scm \
132 lalr/test-glr-basics-03.scm \
133 lalr/test-glr-basics-04.scm \
134 lalr/test-glr-basics-05.scm \
135 lalr/test-glr-script-expression.scm \
136 lalr/test-glr-single-expressions.scm \
137 \
138 lalr/test-lr-associativity-01.scm \
139 lalr/test-lr-basics-01.scm \
140 lalr/test-lr-basics-02.scm \
141 lalr/test-lr-basics-03.scm \
142 lalr/test-lr-basics-04.scm \
143 lalr/test-lr-basics-05.scm \
144 lalr/test-lr-error-recovery-01.scm \
145 lalr/test-lr-error-recovery-02.scm \
146 lalr/test-lr-no-clause.scm \
147 lalr/test-lr-script-expression.scm \
148 lalr/test-lr-single-expressions.scm
149
150 # Tests not listed in `run-guile-test.sh' and which should not be run.
151 LALR_EXTRA = \
152 lalr/test-lr-associativity-02.scm \
153 lalr/test-lr-associativity-03.scm \
154 lalr/test-lr-associativity-04.scm
155
156 # Test framework.
157 LALR_EXTRA += \
158 lalr/common-test.scm \
159 lalr/glr-test.scm \
160 lalr/run-guile-test.sh
161
162 TESTS = $(LALR_TESTS)
163 TESTS_ENVIRONMENT = $(top_builddir)/meta/guile --no-autocompile
164
165 EXTRA_DIST += $(LALR_EXTRA) $(LALR_TESTS)