~ubuntu-branches/ubuntu/hardy/sigscheme/hardy-proposed

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2007-01-29 15:31:24 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070129153124-j5fcqyrwcfbczma7
Tags: 0.7.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Libraries
2
 
EXTRA_DIST = unittest.scm unittest-bigloo.scm unittest-gauche.scm
 
2
EXTRA_DIST = unittest.scm unittest-bigloo.scm unittest-gauche.scm \
 
3
             run-singletest.sh.in
3
4
 
 
5
sscm_xfail_tests =
 
6
sscm_optional_tests =
4
7
# Native tests of SigScheme
5
 
EXTRA_DIST += \
 
8
sscm_tests = \
6
9
        test-apply.scm \
 
10
        test-assoc.scm \
 
11
        test-begin.scm \
 
12
        test-bool.scm \
7
13
        test-char-cmp.scm \
8
 
        test-char.scm \
9
14
        test-continuation.scm \
10
15
        test-define.scm \
11
 
        test-delay-force.scm \
12
 
        test-enc-eucgeneric.scm \
13
 
        test-enc-eucjp.scm \
14
 
        test-enc-sjis.scm \
15
 
        test-enc-utf8.scm \
16
 
        test-equation.scm \
 
16
        test-define-internal.scm \
 
17
        test-do.scm \
 
18
        test-dyn-extent.scm \
 
19
        test-eq.scm \
 
20
        test-eqv.scm \
 
21
        test-equal.scm \
17
22
        test-eval.scm \
18
 
        test-exp.scm \
 
23
        test-formal-syntax.scm \
19
24
        test-formatplus.scm \
 
25
        test-lambda.scm \
 
26
        test-let.scm \
 
27
        test-letstar.scm \
 
28
        test-letrec.scm \
20
29
        test-list.scm \
21
30
        test-map.scm \
22
 
        test-num.scm \
 
31
        test-member.scm \
 
32
        test-misc.scm \
 
33
        test-named-let.scm \
 
34
        test-number-arith.scm \
 
35
        test-number-cmp.scm \
 
36
        test-number-literal.scm \
 
37
        test-number-io.scm \
 
38
        test-number-pred.scm \
 
39
        test-obsolete.scm \
 
40
        test-pair.scm \
23
41
        test-quote.scm \
24
42
        test-srfi1.scm \
25
43
        test-srfi2.scm \
26
44
        test-srfi6.scm \
27
45
        test-srfi8.scm \
28
46
        test-srfi28.scm \
 
47
        test-srfi34.scm \
29
48
        test-srfi34-2.scm \
30
 
        test-srfi34.scm \
31
49
        test-srfi38.scm \
32
50
        test-srfi48.scm \
33
51
        test-srfi60.scm \
34
52
        test-string-cmp.scm \
 
53
        test-string-core.scm \
 
54
        test-string-null.scm \
35
55
        test-string.scm \
 
56
        test-symbol.scm \
36
57
        test-syntax-rules.scm \
37
58
        test-syntax.scm \
38
 
        test-tail-rec.scm \
 
59
        test-values.scm \
39
60
        test-vector.scm
40
61
 
 
62
if USE_UTF8
 
63
sscm_optional_tests += test-enc-utf8.scm
 
64
else
 
65
sscm_xfail_tests += test-enc-utf8.scm
 
66
endif
 
67
EXTRA_DIST += test-enc-utf8.scm
 
68
 
 
69
if USE_EUCCN
 
70
sscm_optional_tests += test-enc-eucgeneric.scm
 
71
else
 
72
sscm_xfail_tests += test-enc-eucgeneric.scm
 
73
endif
 
74
EXTRA_DIST += test-enc-eucgeneric.scm
 
75
 
 
76
if USE_EUCJP
 
77
sscm_optional_tests += test-enc-eucjp.scm test-char.scm
 
78
else
 
79
sscm_xfail_tests += test-enc-eucjp.scm test-char.scm
 
80
endif
 
81
EXTRA_DIST += test-enc-eucjp.scm test-char.scm
 
82
 
 
83
if USE_SJIS
 
84
sscm_optional_tests += test-enc-sjis.scm
 
85
else
 
86
sscm_xfail_tests += test-enc-sjis.scm
 
87
endif
 
88
EXTRA_DIST += test-enc-sjis.scm
 
89
 
 
90
EXTRA_DIST += test-tail-rec.scm
 
91
 
41
92
# Imported foreign tests
42
 
EXTRA_DIST += \
 
93
imported_tests = \
43
94
        test-r4rs.scm \
44
95
        bigloo-apply.scm \
45
96
        bigloo-bchar.scm \
51
102
        bigloo-vector.scm \
52
103
        gauche-euc-jp.scm \
53
104
        gauche-primsyn.scm
 
105
 
 
106
EXTRA_DIST += $(sscm_tests) $(imported_tests)
 
107
 
 
108
TESTS_ENVIRONMENT = $(SH) $(top_builddir)/test/run-singletest.sh
 
109
if USE_SHELL
 
110
TESTS = $(sscm_tests) $(sscm_optional_tests)
 
111
XFAIL_TESTS = $(sscm_xfail_tests)
 
112
else
 
113
TESTS =
 
114
XFAIL_TESTS = $(sscm_tests) $(sscm_xfail_tests)
 
115
endif
 
116
 
 
117
DISTCLEANFILES = run-singletest.sh