1# First digit after "t" the type of test:
2#
3# 1xxx: Containers
4# 10xx:   zip
5# 11xx:   ole2
6# 12xx:   tar
7#
8# 8xxx: Runs with valgrind and similar tools.
9# 80xx:   Valgrind
10# 82xx:   G_SLICE debug and similar
11#
12# 90xx: Misc stuff.
13
14TESTS_EXTENSIONS=.pl
15TESTS =	t1000-zip-single.pl				\
16	t1001-zip-multiple.pl				\
17	t1002-zip-aaaa.pl				\
18	t1003-zip-noise.pl				\
19	t1004-zip-zip64.pl				\
20	t1005-zip-nonseekable.pl			\
21	t8000-valgrind-zip.pl				\
22	t8020-valgrind-ole.pl				\
23	t9999-epilogue.pl
24
25SUPPS = common.supp
26
27AM_CPPFLAGS = -I$(top_srcdir) $(LIBGSF_CFLAGS) $(LIBXML_CFLAGS)
28LDADD = $(top_builddir)/gsf/libgsf-1.la $(LIBGSF_LIBS)
29
30check_PROGRAMS = test-msole1 test-msole2 test-cp-msole test-msvba	\
31		 test-msole-dup						\
32		 test-zip1 test-input1 test-cp				\
33		 test-textline test-ls-zip test-cat-zip test-zip2 	\
34		 test-cp-zip test-out-printf test-outmem-printf   	\
35		 test-msole-printf test-zip-out test-zip-out-subdirs    \
36		 test-out-gzip1 test-out-gzip2 test-gzip1 test-gzip2	\
37		 test-out-bzip test-bzip				\
38		 test-dump-msole test-restore-msole test-msvba-zip	\
39		 test-http test-gio test-xml
40
41EXTRA_DIST = LibGsfTest.pm $(SUPPS) $(TESTS)
42.PHONY: $(TESTS)
43.NOTPARALLEL:
44