Add a TeX driver
[pspp] / tests / automake.mk
1 # PSPP - a program for statistical analysis.
2 # Copyright (C) 2017 Free Software Foundation, Inc.
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17 ## Process this file with automake to produce Makefile.in  -*- makefile -*-
18
19 check_PROGRAMS += \
20         tests/data/datasheet-test \
21         tests/data/sack \
22         tests/data/spreadsheet-test \
23         tests/data/inexactify \
24         tests/language/lexer/command-name-test \
25         tests/language/lexer/scan-test \
26         tests/language/lexer/segment-test \
27         tests/libpspp/abt-test \
28         tests/libpspp/bt-test \
29         tests/libpspp/cmac-aes256-test \
30         tests/libpspp/encoding-guesser-test \
31         tests/libpspp/heap-test \
32         tests/libpspp/hmap-test \
33         tests/libpspp/hmapx-test \
34         tests/libpspp/i18n-test \
35         tests/libpspp/line-reader-test \
36         tests/libpspp/ll-test \
37         tests/libpspp/llx-test \
38         tests/libpspp/range-map-test \
39         tests/libpspp/range-set-test \
40         tests/libpspp/range-tower-test \
41         tests/libpspp/sparse-array-test \
42         tests/libpspp/sparse-xarray-test \
43         tests/libpspp/str-test \
44         tests/libpspp/string-map-test \
45         tests/libpspp/stringi-map-test \
46         tests/libpspp/string-set-test \
47         tests/libpspp/stringi-set-test \
48         tests/libpspp/tower-test \
49         tests/libpspp/u8-istream-test \
50         tests/libpspp/zip-test \
51         tests/math/chart-get-ticks-format-test \
52         tests/math/chart-get-scale-test \
53         tests/output/render-test \
54         tests/output/tex-glyphs \
55         tests/output/tex-strings \
56         tests/ui/syntax-gen-test
57
58
59 check-programs: $(check_PROGRAMS)
60
61 tests_data_datasheet_test_SOURCES = \
62         tests/data/datasheet-test.c
63 tests_data_datasheet_test_LDADD = src/libpspp-core.la
64 tests_data_datasheet_test_CFLAGS = $(AM_CFLAGS)
65
66 tests_data_sack_SOURCES = \
67         tests/data/sack.c
68 tests_data_sack_LDADD = src/libpspp-core.la
69 tests_data_sack_CFLAGS = $(AM_CFLAGS)
70
71
72 tests_data_spreadsheet_test_SOURCES = \
73         tests/data/spreadsheet-test.c
74 tests_data_spreadsheet_test_LDADD = src/libpspp-core.la
75 tests_data_spreadsheet_test_CFLAGS = $(AM_CFLAGS)
76
77 tests_libpspp_line_reader_test_SOURCES = tests/libpspp/line-reader-test.c
78 tests_libpspp_line_reader_test_LDADD = src/libpspp-core.la
79
80 tests_libpspp_ll_test_SOURCES = \
81         src/libpspp/ll.c \
82         tests/libpspp/ll-test.c
83 tests_libpspp_ll_test_CFLAGS = $(AM_CFLAGS)
84
85 tests_libpspp_llx_test_SOURCES = \
86         src/libpspp/ll.c \
87         src/libpspp/llx.c \
88         tests/libpspp/llx-test.c
89 tests_libpspp_llx_test_CFLAGS = $(AM_CFLAGS)
90
91 tests_libpspp_encoding_guesser_test_SOURCES = \
92         tests/libpspp/encoding-guesser-test.c
93 tests_libpspp_encoding_guesser_test_LDADD = src/libpspp-core.la
94
95 tests_libpspp_heap_test_SOURCES = \
96         tests/libpspp/heap-test.c
97 tests_libpspp_heap_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
98 tests_libpspp_heap_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
99
100 tests_libpspp_hmap_test_SOURCES = \
101         src/libpspp/hmap.c \
102         tests/libpspp/hmap-test.c
103 tests_libpspp_hmap_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
104
105 tests_libpspp_hmapx_test_SOURCES = \
106         src/libpspp/hmap.c \
107         src/libpspp/hmapx.c \
108         tests/libpspp/hmapx-test.c
109 tests_libpspp_hmapx_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
110
111 tests_libpspp_i18n_test_SOURCES = tests/libpspp/i18n-test.c
112 tests_libpspp_i18n_test_LDADD = src/libpspp-core.la gl/libgl.la
113
114 tests_libpspp_abt_test_SOURCES = \
115         src/libpspp/abt.c \
116         tests/libpspp/abt-test.c
117 tests_libpspp_abt_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
118
119 tests_libpspp_bt_test_SOURCES = \
120         src/libpspp/bt.c \
121         tests/libpspp/bt-test.c
122 tests_libpspp_bt_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
123
124 tests_libpspp_cmac_aes256_test_SOURCES = \
125         src/libpspp/cmac-aes256.c \
126         tests/libpspp/cmac-aes256-test.c
127 tests_libpspp_cmac_aes256_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
128
129 tests_libpspp_range_map_test_SOURCES = \
130         src/libpspp/bt.c \
131         src/libpspp/range-map.c \
132         tests/libpspp/range-map-test.c
133 tests_libpspp_range_map_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
134
135 tests_libpspp_range_set_test_SOURCES = \
136         tests/libpspp/range-set-test.c
137 tests_libpspp_range_set_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
138 tests_libpspp_range_set_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
139
140 tests_libpspp_range_tower_test_SOURCES = \
141         tests/libpspp/range-tower-test.c
142 tests_libpspp_range_tower_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
143 tests_libpspp_range_tower_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
144
145 tests_libpspp_str_test_SOURCES = \
146         tests/libpspp/str-test.c
147 tests_libpspp_str_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
148
149 tests_libpspp_string_map_test_SOURCES = \
150         tests/libpspp/string-map-test.c
151 tests_libpspp_string_map_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
152 tests_libpspp_string_map_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
153
154 tests_libpspp_stringi_map_test_SOURCES = \
155         tests/libpspp/stringi-map-test.c
156 tests_libpspp_stringi_map_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
157 tests_libpspp_stringi_map_test_LDADD = src/libpspp-core.la
158
159 tests_libpspp_string_set_test_SOURCES = \
160         src/libpspp/hash-functions.c \
161         src/libpspp/hmap.c \
162         src/libpspp/string-set.c \
163         tests/libpspp/string-set-test.c
164 tests_libpspp_string_set_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
165
166 tests_libpspp_stringi_set_test_SOURCES = \
167         tests/libpspp/stringi-set-test.c
168 tests_libpspp_stringi_set_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
169 tests_libpspp_stringi_set_test_LDADD = src/libpspp-core.la
170
171 tests_libpspp_tower_test_SOURCES = \
172         tests/libpspp/tower-test.c
173 tests_libpspp_tower_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
174 tests_libpspp_tower_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
175
176 tests_libpspp_u8_istream_test_SOURCES = tests/libpspp/u8-istream-test.c
177 tests_libpspp_u8_istream_test_LDADD = src/libpspp-core.la
178
179 tests_libpspp_sparse_array_test_SOURCES = \
180         tests/libpspp/sparse-array-test.c
181 tests_libpspp_sparse_array_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
182 tests_libpspp_sparse_array_test_LDADD = src/libpspp/liblibpspp.la gl/libgl.la
183
184 tests_libpspp_sparse_xarray_test_SOURCES = \
185         tests/libpspp/sparse-xarray-test.c
186 tests_libpspp_sparse_xarray_test_CPPFLAGS = $(AM_CPPFLAGS) -DASSERT_LEVEL=10
187 tests_libpspp_sparse_xarray_test_LDADD = src/libpspp/liblibpspp.la \
188         src/libpspp-core.la \
189         gl/libgl.la
190
191 tests_data_inexactify_SOURCES = tests/data/inexactify.c
192
193 check_PROGRAMS += tests/language/lexer/command-name-test
194 tests_language_lexer_command_name_test_SOURCES = \
195         src/data/identifier.c \
196         src/language/lexer/command-name.c \
197         tests/language/lexer/command-name-test.c
198 tests_language_lexer_command_name_test_LDADD = \
199         src/libpspp/liblibpspp.la \
200         gl/libgl.la
201 tests_language_lexer_command_name_test_CFLAGS = $(AM_CFLAGS)
202
203 check_PROGRAMS += tests/language/lexer/scan-test
204 tests_language_lexer_scan_test_SOURCES = \
205         src/data/identifier.c \
206         src/language/lexer/command-name.c \
207         src/language/lexer/scan.c \
208         src/language/lexer/segment.c \
209         src/language/lexer/token.c \
210         tests/language/lexer/scan-test.c
211 tests_language_lexer_scan_test_CFLAGS = $(AM_CFLAGS)
212 tests_language_lexer_scan_test_LDADD = \
213         src/libpspp/liblibpspp.la \
214         gl/libgl.la
215
216 check_PROGRAMS += tests/language/lexer/segment-test
217 tests_language_lexer_segment_test_SOURCES = \
218         src/data/identifier.c \
219         src/language/lexer/command-name.c \
220         src/language/lexer/segment.c \
221         tests/language/lexer/segment-test.c
222 tests_language_lexer_segment_test_CFLAGS = $(AM_CFLAGS)
223 tests_language_lexer_segment_test_LDADD = \
224         src/libpspp/liblibpspp.la \
225         gl/libgl.la
226
227 check_PROGRAMS += tests/libpspp/zip-test
228 tests_libpspp_zip_test_SOURCES = \
229         tests/libpspp/zip-test.c
230
231 tests_libpspp_zip_test_CFLAGS = $(AM_CFLAGS)
232 tests_libpspp_zip_test_LDADD = \
233         src/libpspp/liblibpspp.la \
234         src/libpspp-core.la \
235         gl/libgl.la
236
237 check_PROGRAMS += tests/math/chart-get-scale-test
238 tests_math_chart_get_scale_test_SOURCES = tests/math/chart-get-scale-test.c
239 tests_math_chart_get_scale_test_LDADD = \
240         src/math/libpspp-math.la \
241         src/libpspp/liblibpspp.la \
242         src/libpspp-core.la \
243         gl/libgl.la
244
245 check_PROGRAMS += tests/math/chart-get-ticks-format-test
246 tests_math_chart_get_ticks_format_test_SOURCES = tests/math/chart-get-ticks-format-test.c
247 tests_math_chart_get_ticks_format_test_LDADD = \
248         src/math/libpspp-math.la \
249         src/libpspp/liblibpspp.la \
250         src/libpspp-core.la \
251         gl/libgl.la
252
253 check_PROGRAMS += tests/output/render-test
254 tests_output_render_test_SOURCES = tests/output/render-test.c
255 tests_output_render_test_LDADD = \
256         src/libpspp.la \
257         src/libpspp-core.la \
258         $(CAIRO_LIBS)
259
260 check_PROGRAMS += tests/ui/syntax-gen-test
261 tests_ui_syntax_gen_test_SOURCES = tests/ui/syntax-gen-test.c
262 tests_ui_syntax_gen_test_LDADD = \
263         src/ui/libuicommon.la \
264         src/libpspp-core.la \
265         $(CAIRO_LIBS)
266
267 tests_output_tex_glyphs_SOURCES = \
268         tests/output/tex-glyphs.c
269 tests_output_tex_glyphs_LDADD = src/libpspp-core.la src/output/liboutput.la
270 tests_output_tex_glyphs_CFLAGS = $(AM_CFLAGS) -I $(top_srcdir)/src/output
271
272 tests_output_tex_strings_SOURCES = \
273         tests/output/tex-strings.c
274 tests_output_tex_strings_LDADD = src/libpspp-core.la src/output/liboutput.la
275 tests_output_tex_strings_CFLAGS = $(AM_CFLAGS) -I $(top_srcdir)/src/output
276
277
278 EXTRA_DIST += \
279         tests/coverage.sh \
280         tests/data/simple.ods \
281         tests/data/simple.gnumeric \
282         tests/data/sparse.ods \
283         tests/data/sparse.gnumeric \
284         tests/data/holey.ods \
285         tests/data/holey.gnumeric \
286         tests/data/multisheet.ods \
287         tests/data/multisheet.gnumeric \
288         tests/data/repeating.ods \
289         tests/data/repeating.gnumeric \
290         tests/data/one-thousand-by-fifty-three.ods \
291         tests/data/one-thousand-by-fifty-three.gnumeric \
292         tests/data/CVE-2017-10791.sav \
293         tests/data/CVE-2017-10792.sav \
294         tests/data/bcd-in.expected.cmp.gz \
295         tests/data/binhex-in.expected.cmp.gz \
296         tests/data/binhex-out.expected.gz \
297         tests/data/hotel-encrypted.sav \
298         tests/data/legacy-in.expected.cmp.gz \
299         tests/data/num-in.expected.gz \
300         tests/data/num-out-cmp.pl \
301         tests/data/num-out.expected.cmp.gz \
302         tests/data/test-date-input.py \
303         tests/data/test-time-input.py \
304         tests/data/v13.sav \
305         tests/data/v14.sav \
306         tests/data/test-encrypted.sps \
307         tests/data/test-decrypted.spv \
308         tests/data/test-encrypted.spv \
309         tests/language/mann-whitney.txt \
310         tests/language/data-io/Book1.gnm.unzipped \
311         tests/language/data-io/test.ods \
312         tests/language/data-io/newone.ods \
313         tests/language/data-io/readnames.ods \
314         tests/language/stats/llz.zsav \
315         tests/utilities/regress.spv
316
317 CLEANFILES += *.save pspp.* foo*
318 \f
319 # Autotest testsuite
320
321 EXTRA_DIST += \
322         tests/testsuite.in \
323         $(TESTSUITE_AT) \
324         $(TESTSUITE) \
325         tests/atlocal.in \
326         $(srcdir)/package.m4 \
327         $(TESTSUITE)
328
329 TESTSUITE_AT = \
330         tests/data/calendar.at \
331         tests/data/data-in.at \
332         tests/data/data-out.at \
333         tests/data/datasheet-test.at \
334         tests/data/spreadsheet-test.at \
335         tests/data/dictionary.at \
336         tests/data/file.at \
337         tests/data/format-guesser.at \
338         tests/data/mdd-file.at \
339         tests/data/pc+-file-reader.at \
340         tests/data/por-file.at \
341         tests/data/sys-file-reader.at \
342         tests/data/sys-file.at \
343         tests/data/encrypted-file.at \
344         tests/language/command.at \
345         tests/language/control/do-if.at \
346         tests/language/control/do-repeat.at \
347         tests/language/control/loop.at \
348         tests/language/control/temporary.at \
349         tests/language/data-io/add-files.at \
350         tests/language/data-io/data-list.at \
351         tests/language/data-io/data-reader.at \
352         tests/language/data-io/dataset.at \
353         tests/language/data-io/file-handle.at \
354         tests/language/data-io/get-data-spreadsheet.at \
355         tests/language/data-io/get-data-psql.at \
356         tests/language/data-io/get-data-txt.at \
357         tests/language/data-io/get.at \
358         tests/language/data-io/inpt-pgm.at \
359         tests/language/data-io/list.at \
360         tests/language/data-io/match-files.at \
361         tests/language/data-io/matrix-data.at \
362         tests/language/data-io/print-space.at \
363         tests/language/data-io/print.at \
364         tests/language/data-io/save.at \
365         tests/language/data-io/save-translate.at \
366         tests/language/data-io/update.at \
367         tests/language/dictionary/attributes.at \
368         tests/language/dictionary/apply.at \
369         tests/language/dictionary/delete-variables.at \
370         tests/language/dictionary/formats.at \
371         tests/language/dictionary/missing-values.at \
372         tests/language/dictionary/mrsets.at \
373         tests/language/dictionary/modify-variables.at \
374         tests/language/dictionary/rename-variables.at \
375         tests/language/dictionary/sort-variables.at \
376         tests/language/dictionary/split-file.at \
377         tests/language/dictionary/sys-file-info.at \
378         tests/language/dictionary/value-labels.at \
379         tests/language/dictionary/variable-display.at \
380         tests/language/dictionary/vector.at \
381         tests/language/dictionary/weight.at \
382         tests/language/expressions/evaluate.at \
383         tests/language/expressions/parse.at \
384         tests/language/lexer/command-name.at \
385         tests/language/lexer/lexer.at \
386         tests/language/lexer/q2c.at \
387         tests/language/lexer/scan.at \
388         tests/language/lexer/segment.at \
389         tests/language/lexer/variable-parser.at \
390         tests/language/stats/aggregate.at \
391         tests/language/stats/autorecode.at \
392         tests/language/stats/correlations.at \
393         tests/language/stats/crosstabs.at \
394         tests/language/stats/descriptives.at \
395         tests/language/stats/examine.at \
396         tests/language/stats/graph.at \
397         tests/language/stats/factor.at \
398         tests/language/stats/flip.at \
399         tests/language/stats/frequencies.at \
400         tests/language/stats/glm.at \
401         tests/language/stats/logistic.at \
402         tests/language/stats/means.at \
403         tests/language/stats/npar.at \
404         tests/language/stats/oneway.at \
405         tests/language/stats/quick-cluster.at \
406         tests/language/stats/rank.at \
407         tests/language/stats/regression.at \
408         tests/language/stats/reliability.at \
409         tests/language/stats/roc.at \
410         tests/language/stats/sort-cases.at \
411         tests/language/stats/t-test.at \
412         tests/language/utilities/cache.at \
413         tests/language/utilities/cd.at \
414         tests/language/utilities/date.at \
415         tests/language/utilities/host.at \
416         tests/language/utilities/insert.at \
417         tests/language/utilities/permissions.at \
418         tests/language/utilities/set.at \
419         tests/language/utilities/show.at \
420         tests/language/utilities/title.at \
421         tests/language/xforms/compute.at \
422         tests/language/xforms/count.at \
423         tests/language/xforms/recode.at \
424         tests/language/xforms/sample.at \
425         tests/language/xforms/select-if.at \
426         tests/libpspp/abt.at \
427         tests/libpspp/bt.at \
428         tests/libpspp/encoding-guesser.at \
429         tests/libpspp/float-format.at \
430         tests/libpspp/heap.at \
431         tests/libpspp/hmap.at \
432         tests/libpspp/hmapx.at \
433         tests/libpspp/i18n.at \
434         tests/libpspp/line-reader.at \
435         tests/libpspp/ll.at \
436         tests/libpspp/llx.at \
437         tests/libpspp/range-map.at \
438         tests/libpspp/range-set.at \
439         tests/libpspp/range-tower.at \
440         tests/libpspp/sparse-array.at \
441         tests/libpspp/sparse-xarray-test.at \
442         tests/libpspp/str.at \
443         tests/libpspp/string-map.at \
444         tests/libpspp/stringi-map.at \
445         tests/libpspp/string-set.at \
446         tests/libpspp/stringi-set.at \
447         tests/libpspp/tower.at \
448         tests/libpspp/u8-istream.at \
449         tests/libpspp/zip.at \
450         tests/math/chart-geometry.at \
451         tests/math/moments.at \
452         tests/math/randist.at \
453         tests/output/ascii.at \
454         tests/output/charts.at \
455         tests/output/html.at \
456         tests/output/output.at \
457         tests/output/paper-size.at \
458         tests/output/render.at \
459         tests/output/tables.at \
460         tests/output/tex.at \
461         tests/ui/terminal/main.at \
462         tests/ui/syntax-gen.at \
463         tests/utilities/pspp-convert.at \
464         tests/utilities/pspp-output.at \
465         tests/perl-module.at
466
467 TESTSUITE = $(srcdir)/tests/testsuite
468 DISTCLEANFILES += tests/atconfig tests/atlocal
469 AUTOTEST_PATH = tests/data:tests/language/lexer:tests/libpspp:tests/output:tests/math:src/ui/terminal:utilities
470
471 $(srcdir)/tests/testsuite.at: tests/testsuite.in tests/automake.mk
472         $(AM_V_GEN)printf '\043 Generated automatically -- do not modify!    -*- buffer-read-only: t -*-\n' > $@,tmp
473         $(AM_V_at)cat $< >> $@,tmp
474         $(AM_V_at)for t in $(TESTSUITE_AT); do \
475           echo "m4_include([$$t])" >> $@,tmp ;\
476         done
477         mv $@,tmp $@
478
479 EXTRA_DIST += tests/testsuite.at
480
481 CHECK_LOCAL += tests_check
482 tests_check: tests/atconfig tests/atlocal $(TESTSUITE) $(check_PROGRAMS)
483         XTERM_LOCALE='' $(SHELL) '$(TESTSUITE)' -C tests AUTOTEST_PATH=$(AUTOTEST_PATH) RUNNER='$(RUNNER)' $(TESTSUITEFLAGS)
484
485 CLEAN_LOCAL += tests_clean
486 tests_clean:
487         test ! -f '$(TESTSUITE)' || $(SHELL) '$(TESTSUITE)' -C tests --clean
488
489 AUTOM4TE = $(SHELL) $(srcdir)/build-aux/missing --run autom4te
490 AUTOTEST = $(AUTOM4TE) --language=autotest
491 $(TESTSUITE): package.m4 $(srcdir)/tests/testsuite.at $(TESTSUITE_AT)
492         $(AM_V_GEN)$(AUTOTEST) -I '$(srcdir)' $@.at | $(SED) 's/@<00A0>@/ /g' > $@.tmp
493         test -s $@.tmp
494         $(AM_V_at)mv $@.tmp $@
495
496 # The `:;' works around a Bash 3.2 bug when the output is not writeable.
497 $(srcdir)/package.m4: $(top_srcdir)/configure.ac
498         $(AM_V_GEN):;{ \
499           echo '# Signature of the current package.' && \
500           echo 'm4_define([AT_PACKAGE_NAME],      [$(PACKAGE_NAME)])' && \
501           echo 'm4_define([AT_PACKAGE_TARNAME],   [$(PACKAGE_TARNAME)])' && \
502           echo 'm4_define([AT_PACKAGE_VERSION],   [$(PACKAGE_VERSION)])' && \
503           echo 'm4_define([AT_PACKAGE_STRING],    [$(PACKAGE_STRING)])' && \
504           echo 'm4_define([AT_PACKAGE_BUGREPORT], [$(PACKAGE_BUGREPORT)])' && \
505           echo 'm4_define([AT_PACKAGE_URL],       [$(PACKAGE_URL)])'; \
506         } >'$(srcdir)/package.m4'
507
508 check-valgrind:
509         $(MAKE) check RUNNER='$(SHELL) $(abs_top_builddir)/libtool --mode=execute valgrind --log-file=valgrind.%p --leak-check=full --num-callers=20 --suppressions=$(abs_top_srcdir)/tests/valgrind.supp --read-inline-info=yes --read-var-info=yes' TESTSUITEFLAGS='$(TESTSUITEFLAGS) -d'
510         @echo
511         @echo '--------------------------------'
512         @echo 'Valgrind output is in:'
513         @echo 'tests/testsuite.dir/*/valgrind.*'
514         @echo '--------------------------------'
515 EXTRA_DIST += tests/valgrind.supp tests/lsan.supp