~ubuntu-branches/ubuntu/hardy/dbacl/hardy

« back to all changes in this revision

Viewing changes to src/tests/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Zak B. Elep
  • Date: 2006-03-26 22:35:35 UTC
  • mto: (2.1.1 etch) (1.1.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20060326223535-icwiulpkzesds4mq
ImportĀ upstreamĀ versionĀ 1.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
        dbacl-o.sh
20
20
 
21
21
MLTESTS = html.sh html-links.sh html-alt.sh \
22
 
        xml.sh
 
22
        xml.sh 
23
23
 
24
24
EMTESTS = email-mbox.sh email-maildir.sh \
25
25
        email-l.sh email-pgp.sh email-uu.sh \
26
26
        email-headers.sh email-xheaders.sh email-theaders.sh \
27
27
        email-badmime1.sh email-badmime2.sh \
28
28
        email-uri.sh email-forms.sh email-scripts.sh \
29
 
        email-2047.sh
 
29
        email-2047.sh email-style.sh
30
30
 
31
31
CTESTS = icheck.sh lscheck.sh model-sym1.sh model-sym2.sh \
32
32
        model-sym3.sh model-sum1.sh \
42
42
TESTS = $(BTESTS) $(LTESTS) $(MLTESTS) $(EMTESTS) $(CTESTS) $(HTESTS)
43
43
 
44
44
# tests expected to fail in OSes with incomplete unicode
45
 
XFAIL_TESTS= email-forms.sh email-pgp.sh html-alt.sh email-badmime1.sh
 
45
#XFAIL_TESTS= email-forms.sh email-pgp.sh html-alt.sh email-badmime1.sh
46
46
 
47
47
SAMPLEIN = sample.spam-1 sample.spam-2 sample.spam-3 sample.spam-4 \
48
48
        sample.email-5 sample.email-6 sample.spam-7 sample.spam-8 \
49
 
        sample.spam-9 sample.spam-10 \
 
49
        sample.spam-9 sample.spam-10 sample.spam-11 \
50
50
        sample.headers-821g sample.headers-821b \
51
51
        sample.headers-822g sample.headers-822b \
52
52
        sample.headers-2821g sample.headers-2821b \
54
54
 
55
55
SAMPLEOUT = verify.html verify.html-links verify.html-alt \
56
56
        verify.xml \
57
 
        verify.email-l verify.email-pgp verify.email-uu \
 
57
        verify.email-l verify.email-pgp verify.email-uu verify.email-style \
58
58
        verify.email-headers verify.email-xheaders verify.email-theaders \
59
59
        verify.email-badmime1 verify.email-badmime2 \
60
60
        verify.email-uri verify.email-forms verify.email-scripts
61
61
 
 
62
# this is a hack. GNU make makes CURDIR available, but that doesn't exist
 
63
# on BSD make, which uses .CURDIR instead, and vice versa. So if we 
 
64
# concatenate both together, we should only get one value. 
 
65
#CURDIR = $(CURDIR)$(.CURDIR)
 
66
# this line below is another way of doing the same thing, but apparently
 
67
# it is broken on IRIX. I don't have the hardware to investigate this.
 
68
CURDIR ?= $(.CURDIR)
 
69
 
62
70
# use this for debugging test scripts
63
71
#TESTS_ENVIRONMENT = TESTBIN=$(srcdir)/.. DOCDIR=$(srcdir)/../../doc $(SHELL) -x
64
 
TESTS_ENVIRONMENT = TESTBIN=$(srcdir)/.. DOCDIR=$(srcdir)/../../doc
 
72
TESTS_ENVIRONMENT = TESTBIN=$(CURDIR)/.. DOCDIR=$(srcdir)/../../doc sourcedir=$(srcdir)
65
73
 
66
74
check_SCRIPTS = $(BTESTS) $(LTESTS) $(MLTESTS) $(EMTESTS) $(CTESTS) $(HTESTS)
67
75
 
73
81
        html.shin html-links.shin html-alt.shin \
74
82
        xml.shin \
75
83
        email-mbox.shin email-maildir.shin \
76
 
        email-l.shin email-pgp.shin email-uu.shin \
 
84
        email-l.shin email-pgp.shin email-uu.shin email-style.shin \
77
85
        email-headers.shin email-xheaders.shin email-theaders.shin \
78
86
        email-badmime1.shin email-badmime2.shin \
79
87
        email-uri.shin email-forms.shin email-scripts.shin \
95
103
                | sed -e "s|[@]VERSION@|$(VERSION)|g" \
96
104
                > $@
97
105
        chmod +x $@
98