Codebase list unrtf / 40ca1ed
Make clean target work by updating file lists in tests/Makefile.am Willi Mann 11 years ago
3 changed file(s) with 143 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Willi Mann <willi@wm1.at>
1 Date: Wed, 26 Dec 2012 10:12:07 +0100
2 Subject: Ensure that the picture extracted during testing is also cleaned
3
4 ---
5 tests/Makefile.am | 2 +-
6 1 file changed, 1 insertion(+), 1 deletion(-)
7
8 diff --git a/tests/Makefile.am b/tests/Makefile.am
9 index ea17293..4950e05 100644
10 --- a/tests/Makefile.am
11 +++ b/tests/Makefile.am
12 @@ -56,7 +56,7 @@ testresults_tex = Greek1.rtf.tex Greek2.rtf.tex \
13 unicode4.rtf.tex
14
15 # need to wipe out test results on make clean
16 -CLEANFILES = $(testresults_html) $(testresults_tex)
17 +CLEANFILES = $(testresults_html) $(testresults_tex) pict001.wmf
18
19 # add the test scripts and the test data to the distributed files
20 EXTRA_DIST = $(TESTS) $(testdata)
0 From: Willi Mann <willi@wm1.at>
1 Date: Wed, 26 Dec 2012 10:38:56 +0100
2 Subject: Update test file set to ensure proper cleaning of tests dir
3
4 ---
5 tests/Makefile.am | 80 ++++++++++++++++++++++++++++++++---------------------
6 1 file changed, 49 insertions(+), 31 deletions(-)
7
8 diff --git a/tests/Makefile.am b/tests/Makefile.am
9 index 4950e05..768a6d7 100644
10 --- a/tests/Makefile.am
11 +++ b/tests/Makefile.am
12 @@ -2,58 +2,76 @@
13 TESTS = test_html.sh
14
15 # the data set for the tests
16 -testdata = Greek1.rtf Greek2.rtf \
17 +testdata = accents.rtf \
18 ascii_decimal.rtf \
19 backslash.rtf \
20 + body.rtf \
21 borders_shading.rtf \
22 braces.rtf \
23 character_formatting.rtf \
24 chars.rtf \
25 columns.rtf \
26 + cp1251-russian-alphabet.rtf \
27 font_size.rtf \
28 font_styles.rtf \
29 + Greek1.rtf \
30 + Greek2.rtf \
31 lists.rtf \
32 paragraph_formatting.rtf \
33 + pict.rtf \
34 symbol.rtf \
35 text_color.rtf \
36 text_formatting.rtf \
37 + Turkish.rtf \
38 unicode4.rtf
39
40 # the result set for the html test
41 -testresults_html = Greek1.rtf.html Greek2.rtf.html \
42 +testresults_html = accents.rtf.html \
43 ascii_decimal.rtf.html \
44 - backslash.rtf.html \
45 - borders_shading.rtf.html \
46 - braces.rtf.html \
47 - character_formatting.rtf.html \
48 - chars.rtf.html \
49 - columns.rtf.html \
50 - font_size.rtf.html \
51 - font_styles.rtf.html \
52 - lists.rtf.html \
53 - paragraph_formatting.rtf.html \
54 - symbol.rtf.html \
55 - text_color.rtf.html \
56 - text_formatting.rtf.html \
57 - unicode4.rtf.html
58 + backslash.rtf.html \
59 + body.rtf.html \
60 + borders_shading.rtf.html \
61 + braces.rtf.html \
62 + character_formatting.rtf.html \
63 + chars.rtf.html \
64 + columns.rtf.html \
65 + cp1251-russian-alphabet.rtf.html \
66 + font_size.rtf.html \
67 + font_styles.rtf.html \
68 + Greek1.rtf.html \
69 + Greek2.rtf.html \
70 + lists.rtf.html \
71 + paragraph_formatting.rtf.html \
72 + pict.rtf.html \
73 + symbol.rtf.html \
74 + text_color.rtf.html \
75 + text_formatting.rtf.html \
76 + Turkish.rtf.html \
77 + unicode4.rtf.html
78
79 # the result set for the latex test
80 -testresults_tex = Greek1.rtf.tex Greek2.rtf.tex \
81 +testresults_tex = accents.rtf.tex \
82 ascii_decimal.rtf.tex \
83 - backslash.rtf.tex \
84 - borders_shading.rtf.tex \
85 - braces.rtf.tex \
86 - character_formatting.rtf.tex \
87 - chars.rtf.tex \
88 - columns.rtf.tex \
89 - font_size.rtf.tex \
90 - font_styles.rtf.tex \
91 - lists.rtf.tex \
92 - paragraph_formatting.rtf.tex \
93 - symbol.rtf.tex \
94 - text_color.rtf.tex \
95 - text_formatting.rtf.tex \
96 - unicode4.rtf.tex
97 + backslash.rtf.tex \
98 + body.rtf.tex \
99 + borders_shading.rtf.tex \
100 + braces.rtf.tex \
101 + character_formatting.rtf.tex \
102 + chars.rtf.tex \
103 + columns.rtf.tex \
104 + cp1251-russian-alphabet.rtf.tex \
105 + font_size.rtf.tex \
106 + font_styles.rtf.tex \
107 + Greek1.rtf.tex \
108 + Greek2.rtf.tex \
109 + lists.rtf.tex \
110 + paragraph_formatting.rtf.tex \
111 + pict.rtf.tex \
112 + symbol.rtf.tex \
113 + text_color.rtf.tex \
114 + text_formatting.rtf.tex \
115 + Turkish.rtf.tex \
116 + unicode4.rtf.tex
117
118 # need to wipe out test results on make clean
119 CLEANFILES = $(testresults_html) $(testresults_tex) pict001.wmf
44 0005-Tell-unrtf-where-to-look-for-output-format-config-fi.patch
55 0006-Disable-latex-test-latex-output-is-broken.patch
66 0007-Get-fully-rid-of-hardcoded-local-lib-paths.patch
7 0008-Ensure-that-the-picture-extracted-during-testing-is-.patch
8 0009-Update-test-file-set-to-ensure-proper-cleaning-of-te.patch