Makefile revision 224691
1# $FreeBSD: head/lib/libarchive/test/Makefile 224691 2011-08-07 08:42:36Z mm $
2
3# Where to find the libarchive sources
4LA_SRCDIR=${.CURDIR}/..
5
6TESTS= \
7	test_acl_basic.c			\
8	test_acl_freebsd.c			\
9	test_acl_pax.c				\
10	test_archive_api_feature.c		\
11	test_bad_fd.c				\
12	test_compat_bzip2.c			\
13	test_compat_cpio.c			\
14	test_compat_gtar.c			\
15	test_compat_gzip.c			\
16	test_compat_lzma.c			\
17	test_compat_solaris_tar_acl.c		\
18	test_compat_tar_hardlink.c		\
19	test_compat_xz.c			\
20	test_compat_zip.c			\
21	test_empty_write.c			\
22	test_entry.c				\
23	test_entry_strmode.c			\
24	test_extattr_freebsd.c			\
25	test_fuzz.c				\
26	test_link_resolver.c			\
27	test_open_fd.c				\
28	test_open_failure.c			\
29	test_open_file.c			\
30	test_open_filename.c			\
31	test_pax_filename_encoding.c		\
32	test_read_compress_program.c		\
33	test_read_data_large.c			\
34	test_read_disk.c			\
35	test_read_disk_entry_from_file.c	\
36	test_read_extract.c			\
37	test_read_file_nonexistent.c		\
38	test_read_format_ar.c			\
39	test_read_format_cpio_bin.c		\
40	test_read_format_cpio_bin_Z.c		\
41	test_read_format_cpio_bin_be.c		\
42	test_read_format_cpio_bin_bz2.c		\
43	test_read_format_cpio_bin_gz.c		\
44	test_read_format_cpio_bin_lzma.c	\
45	test_read_format_cpio_bin_xz.c		\
46	test_read_format_cpio_odc.c		\
47	test_read_format_cpio_svr4_gzip.c	\
48	test_read_format_cpio_svr4c_Z.c		\
49	test_read_format_cpio_svr4_bzip2_rpm.c	\
50	test_read_format_cpio_svr4_gzip_rpm.c	\
51	test_read_format_empty.c		\
52	test_read_format_gtar_gz.c		\
53	test_read_format_gtar_lzma.c		\
54	test_read_format_gtar_sparse.c		\
55	test_read_format_iso_gz.c		\
56	test_read_format_iso_multi_extent.c	\
57	test_read_format_isorr_rr_moved.c	\
58	test_read_format_isojoliet_bz2.c	\
59	test_read_format_isojoliet_long.c	\
60	test_read_format_isojoliet_rr.c		\
61	test_read_format_isorr_bz2.c		\
62	test_read_format_isorr_ce.c		\
63	test_read_format_isorr_new_bz2.c	\
64	test_read_format_isozisofs_bz2.c	\
65	test_read_format_mtree.c		\
66	test_read_format_pax_bz2.c		\
67	test_read_format_raw.c			\
68	test_read_format_tar.c			\
69	test_read_format_tar_empty_filename.c	\
70	test_read_format_tbz.c			\
71	test_read_format_tgz.c			\
72	test_read_format_tlz.c			\
73	test_read_format_txz.c			\
74	test_read_format_tz.c			\
75	test_read_format_xar.c			\
76	test_read_format_zip.c			\
77	test_read_large.c			\
78	test_read_pax_truncated.c		\
79	test_read_position.c			\
80	test_read_truncated.c			\
81	test_read_uu.c				\
82	test_tar_filenames.c			\
83	test_tar_large.c			\
84	test_ustar_filenames.c			\
85	test_write_compress.c			\
86	test_write_compress_bzip2.c		\
87	test_write_compress_gzip.c		\
88	test_write_compress_lzma.c		\
89	test_write_compress_program.c		\
90	test_write_compress_xz.c		\
91	test_write_disk.c			\
92	test_write_disk_failures.c		\
93	test_write_disk_hardlink.c		\
94	test_write_disk_perms.c			\
95	test_write_disk_secure.c		\
96	test_write_disk_sparse.c		\
97	test_write_disk_symlink.c		\
98	test_write_disk_times.c			\
99	test_write_format_ar.c			\
100	test_write_format_cpio.c		\
101	test_write_format_cpio_empty.c		\
102	test_write_format_cpio_newc.c		\
103	test_write_format_cpio_odc.c		\
104	test_write_format_mtree.c		\
105	test_write_format_pax.c			\
106	test_write_format_shar_empty.c		\
107	test_write_format_tar.c			\
108	test_write_format_tar_empty.c		\
109	test_write_format_tar_ustar.c		\
110	test_write_format_zip.c			\
111	test_write_format_zip_empty.c		\
112	test_write_format_zip_no_compression.c	\
113	test_write_open_memory.c
114
115
116# Build the test program.
117SRCS= \
118	${TESTS}				\
119	list.h					\
120	main.c					\
121	read_open_memory.c
122
123NO_MAN=yes
124
125PROG=libarchive_test
126INTERNALPROG=yes  # Don't install this; it's just for testing
127DPADD=${LIBBZ2} ${LIBZ} ${LIBMD} ${LIBCRYPTO} ${LIBBSDXML}
128LDADD= -L ${.OBJDIR}/.. -larchive
129LDADD+= -lz -lbz2 -llzma -lmd -lcrypto -lbsdxml
130CFLAGS+= -g
131CFLAGS+= -I${LA_SRCDIR} -I.
132CFLAGS+= -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1
133
134# Uncomment to link against dmalloc
135#LDADD+= -L/usr/local/lib -ldmalloc
136#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC
137
138# Build libarchive_test and run it.
139check test: libarchive_test
140	./libarchive_test -r ${.CURDIR}
141
142# list.h is just a list of all tests, as indicated by DEFINE_TEST macro lines
143list.h: ${TESTS} Makefile
144	(cd ${.CURDIR}; cat test_*.c) | grep DEFINE_TEST > list.h
145
146CLEANFILES += *.out *.o *.core *~ list.h .dirstamp .depend
147CLEANDIRS += .deps .libs
148
149cleantest:
150	-chmod -R +w /tmp/libarchive_test.*
151	rm -rf /tmp/libarchive_test.*
152
153.include <bsd.prog.mk>
154