* tests/poe.test: New file.
[bpt/guile.git] / test-suite / Makefile.am
1 SUBDIRS = standalone
2
3 SCM_TESTS = tests/alist.test \
4 tests/bit-operations.test \
5 tests/c-api.test \
6 tests/chars.test \
7 tests/common-list.test \
8 tests/elisp.test \
9 tests/environments.test \
10 tests/eval.test \
11 tests/exceptions.test \
12 tests/format.test \
13 tests/gc.test \
14 tests/getopt-long.test \
15 tests/goops.test \
16 tests/guardians.test \
17 tests/hooks.test \
18 tests/import.test \
19 tests/interp.test \
20 tests/list.test \
21 tests/load.test \
22 tests/multilingual.nottest \
23 tests/numbers.test \
24 tests/optargs.test \
25 tests/options.test \
26 tests/poe.test \
27 tests/popen.test \
28 tests/ports.test \
29 tests/posix.test \
30 tests/r4rs.test \
31 tests/reader.test \
32 tests/regexp.test \
33 tests/srcprop.test \
34 tests/srfi-1.test \
35 tests/srfi-6.test \
36 tests/srfi-10.test \
37 tests/srfi-13.test \
38 tests/srfi-14.test \
39 tests/srfi-19.test \
40 tests/srfi-34.test \
41 tests/srfi-4.test \
42 tests/srfi-9.test \
43 tests/strings.test \
44 tests/symbols.test \
45 tests/syncase.test \
46 tests/syntax.test \
47 tests/threads.test \
48 tests/time.test \
49 tests/version.test \
50 tests/weaks.test
51
52 SCM_TESTS_DIRS = tests/asmobs \
53 tests/c-api
54
55 EXTRA_DIST = guile-test lib.scm $(SCM_TESTS)
56
57 ## Automake should be able to handle the distribution of tests/asmobs
58 ## etc without any help, but not all version can handle 'deep'
59 ## directories. So we do it on our own.
60 dist-hook:
61 for d in $(SCM_TESTS_DIRS); do \
62 cp -pR $(srcdir)/$$d $(distdir)/$$d; \
63 rm -rf $(distdir)/$$d/CVS; \
64 done