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