Makefile revision 362134
1194267Sed# $FreeBSD: stable/10/lib/libarchive/tests/Makefile 362134 2020-06-12 23:02:34Z mm $
2194267Sed
3194267SedSRCTOP=		${.CURDIR:H:H:H}
4194267SedTESTSDIR=	${TESTSBASE}/lib/libarchive
5194267Sed
6194267SedLIBARCHIVEDIR=	${SRCTOP}/contrib/libarchive
7194267Sed
8194267SedATF_TESTS_SH+=	functional_test
9194267Sed
10194267SedBINDIR=	${TESTSDIR}
11194267Sed
12194267SedPROGS+=	libarchive_test
13194267Sed
14194267SedCFLAGS+= -I${.CURDIR} -I${.CURDIR:H} -I${.OBJDIR}
15194267SedCFLAGS+= -I${LIBARCHIVEDIR}/libarchive -I${LIBARCHIVEDIR}/libarchive/test
16194267SedCFLAGS+= -I${LIBARCHIVEDIR}/test_utils
17194267SedCFLAGS+= -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1
18194267Sed
19194267Sed# Uncomment to link against dmalloc
20194267Sed#LDADD+= -L/usr/local/lib -ldmalloc
21194267Sed#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC
22194267Sed
23194267Sed.PATH: ${LIBARCHIVEDIR}/libarchive/test
24194267SedTESTS_SRCS= \
25194267Sed	test_acl_nfs4.c				\
26194267Sed	test_acl_pax.c				\
27194267Sed	test_acl_platform_nfs4.c		\
28194267Sed	test_acl_platform_posix1e.c		\
29194267Sed	test_acl_posix1e.c			\
30194267Sed	test_acl_text.c				\
31194267Sed	test_archive_api_feature.c		\
32194267Sed	test_archive_clear_error.c		\
33194267Sed	test_archive_cmdline.c			\
34194267Sed	test_archive_digest.c			\
35194267Sed	test_archive_getdate.c			\
36194267Sed	test_archive_match_time.c		\
37194267Sed	test_archive_match_owner.c		\
38194267Sed	test_archive_match_path.c		\
39194267Sed	test_archive_pathmatch.c		\
40194267Sed	test_archive_read_add_passphrase.c	\
41194267Sed	test_archive_read_close_twice.c		\
42194267Sed	test_archive_read_close_twice_open_fd.c	\
43194267Sed	test_archive_read_close_twice_open_filename.c	\
44194267Sed	test_archive_read_multiple_data_objects.c	\
45194267Sed	test_archive_read_next_header_empty.c	\
46194267Sed	test_archive_read_next_header_raw.c	\
47194267Sed	test_archive_read_open2.c		\
48194267Sed	test_archive_read_set_filter_option.c	\
49194267Sed	test_archive_read_set_format_option.c	\
50194267Sed	test_archive_read_set_option.c		\
51194267Sed	test_archive_read_set_options.c		\
52194267Sed	test_archive_read_support.c		\
53194267Sed	test_archive_set_error.c		\
54194267Sed	test_archive_string.c			\
55194267Sed	test_archive_string_conversion.c	\
56194267Sed	test_archive_write_add_filter_by_name.c	\
57194267Sed	test_archive_write_set_filter_option.c	\
58194267Sed	test_archive_write_set_format_by_name.c	\
59194267Sed	test_archive_write_set_format_filter_by_ext.c \
60	test_archive_write_set_format_option.c	\
61	test_archive_write_set_option.c		\
62	test_archive_write_set_options.c	\
63	test_archive_write_set_passphrase.c	\
64	test_bad_fd.c				\
65	test_compat_bzip2.c			\
66	test_compat_cpio.c			\
67	test_compat_gtar.c			\
68	test_compat_gzip.c			\
69	test_compat_lz4.c			\
70	test_compat_lzip.c			\
71	test_compat_lzma.c			\
72	test_compat_lzop.c			\
73	test_compat_mac.c			\
74	test_compat_pax_libarchive_2x.c		\
75	test_compat_perl_archive_tar.c		\
76	test_compat_plexus_archiver_tar.c	\
77	test_compat_solaris_tar_acl.c		\
78	test_compat_solaris_pax_sparse.c	\
79	test_compat_star_acl.c			\
80	test_compat_tar_hardlink.c		\
81	test_compat_uudecode.c			\
82	test_compat_uudecode_large.c		\
83	test_compat_xz.c			\
84	test_compat_zip.c			\
85	test_compat_zstd.c			\
86	test_empty_write.c			\
87	test_entry.c				\
88	test_entry_strmode.c			\
89	test_extattr_freebsd.c			\
90	test_filter_count.c			\
91	test_fuzz.c				\
92	test_gnutar_filename_encoding.c		\
93	test_link_resolver.c			\
94	test_open_fd.c				\
95	test_open_failure.c			\
96	test_open_file.c			\
97	test_open_filename.c			\
98	test_pax_filename_encoding.c		\
99	test_pax_xattr_header.c 		\
100	test_read_data_large.c			\
101	test_read_disk.c			\
102	test_read_disk_directory_traversals.c	\
103	test_read_disk_entry_from_file.c	\
104	test_read_extract.c			\
105	test_read_file_nonexistent.c		\
106	test_read_filter_compress.c		\
107	test_read_filter_grzip.c		\
108	test_read_filter_lrzip.c		\
109	test_read_filter_lzop.c			\
110	test_read_filter_lzop_multiple_parts.c	\
111	test_read_filter_program.c		\
112	test_read_filter_program_signature.c	\
113	test_read_filter_uudecode.c		\
114	test_read_format_7zip.c			\
115	test_read_format_7zip_encryption_data.c \
116	test_read_format_7zip_encryption_header.c	\
117	test_read_format_7zip_encryption_partially.c	\
118	test_read_format_7zip_malformed.c	\
119	test_read_format_7zip_packinfo_digests.c 	\
120	test_read_format_ar.c			\
121	test_read_format_cab.c			\
122	test_read_format_cab_filename.c		\
123	test_read_format_cpio_afio.c		\
124	test_read_format_cpio_bin.c		\
125	test_read_format_cpio_bin_Z.c		\
126	test_read_format_cpio_bin_be.c		\
127	test_read_format_cpio_bin_bz2.c		\
128	test_read_format_cpio_bin_gz.c		\
129	test_read_format_cpio_bin_le.c		\
130	test_read_format_cpio_bin_lzip.c	\
131	test_read_format_cpio_bin_lzma.c	\
132	test_read_format_cpio_bin_xz.c		\
133	test_read_format_cpio_filename.c	\
134	test_read_format_cpio_odc.c		\
135	test_read_format_cpio_svr4_gzip.c	\
136	test_read_format_cpio_svr4c_Z.c		\
137	test_read_format_cpio_svr4_bzip2_rpm.c	\
138	test_read_format_cpio_svr4_gzip_rpm.c	\
139	test_read_format_empty.c		\
140	test_read_format_gtar_filename.c	\
141	test_read_format_gtar_gz.c		\
142	test_read_format_gtar_lzma.c		\
143	test_read_format_gtar_sparse.c		\
144	test_read_format_gtar_sparse_skip_entry.c \
145	test_read_format_iso_Z.c		\
146	test_read_format_iso_multi_extent.c	\
147	test_read_format_iso_xorriso.c		\
148	test_read_format_isorr_rr_moved.c	\
149	test_read_format_isojoliet_bz2.c	\
150	test_read_format_isojoliet_long.c	\
151	test_read_format_isojoliet_rr.c		\
152	test_read_format_isojoliet_versioned.c	\
153	test_read_format_isorr_bz2.c		\
154	test_read_format_isorr_ce.c		\
155	test_read_format_isorr_new_bz2.c	\
156	test_read_format_isozisofs_bz2.c	\
157	test_read_format_lha.c			\
158	test_read_format_lha_bugfix_0.c		\
159	test_read_format_lha_filename.c		\
160	test_read_format_lha_filename_utf16.c	\
161	test_read_format_mtree.c		\
162	test_read_format_mtree_crash747.c	\
163	test_read_format_pax_bz2.c		\
164	test_read_format_rar.c			\
165	test_read_format_rar5.c			\
166	test_read_format_rar_encryption_data.c	\
167	test_read_format_rar_encryption_header.c	\
168	test_read_format_rar_encryption_partially.c	\
169	test_read_format_rar_invalid1.c		\
170	test_read_format_raw.c			\
171	test_read_format_tar.c			\
172	test_read_format_tar_concatenated.c	\
173	test_read_format_tar_empty_filename.c	\
174	test_read_format_tar_empty_pax.c	\
175	test_read_format_tar_empty_with_gnulabel.c	\
176	test_read_format_tar_filename.c		\
177	test_read_format_tbz.c			\
178	test_read_format_tgz.c			\
179	test_read_format_tlz.c			\
180	test_read_format_txz.c			\
181	test_read_format_tz.c			\
182	test_read_format_ustar_filename.c	\
183	test_read_format_warc.c			\
184	test_read_format_xar.c			\
185	test_read_format_zip.c			\
186	test_read_format_zip_7075_utf8_paths.c	\
187	test_read_format_zip_comment_stored.c	\
188	test_read_format_zip_encryption_data.c	\
189	test_read_format_zip_encryption_header.c	\
190	test_read_format_zip_encryption_partially.c	\
191	test_read_format_zip_extra_padding.c	\
192	test_read_format_zip_filename.c		\
193	test_read_format_zip_high_compression.c	\
194	test_read_format_zip_jar.c		\
195	test_read_format_zip_mac_metadata.c	\
196	test_read_format_zip_malformed.c	\
197	test_read_format_zip_msdos.c		\
198	test_read_format_zip_nested.c		\
199	test_read_format_zip_nofiletype.c	\
200	test_read_format_zip_padded.c		\
201	test_read_format_zip_sfx.c		\
202	test_read_format_zip_traditional_encryption_data.c	\
203	test_read_format_zip_winzip_aes.c	\
204	test_read_format_zip_winzip_aes_large.c	\
205	test_read_format_zip_with_invalid_traditional_eocd.c	\
206	test_read_format_zip_zip64.c		\
207	test_read_large.c			\
208	test_read_pax_xattr_rht_security_selinux.c	\
209	test_read_pax_xattr_schily.c		\
210	test_read_pax_truncated.c		\
211	test_read_position.c			\
212	test_read_set_format.c			\
213	test_read_too_many_filters.c		\
214	test_read_truncated.c			\
215	test_read_truncated_filter.c		\
216	test_sparse_basic.c			\
217	test_tar_filenames.c			\
218	test_tar_large.c			\
219	test_warn_missing_hardlink_target.c	\
220	test_ustar_filenames.c			\
221	test_ustar_filename_encoding.c		\
222	test_write_disk.c			\
223	test_write_disk_appledouble.c		\
224	test_write_disk_failures.c		\
225	test_write_disk_hardlink.c		\
226	test_write_disk_hfs_compression.c	\
227	test_write_disk_lookup.c		\
228	test_write_disk_mac_metadata.c		\
229	test_write_disk_no_hfs_compression.c	\
230	test_write_disk_perms.c			\
231	test_write_disk_secure.c		\
232	test_write_disk_secure744.c		\
233	test_write_disk_secure745.c		\
234	test_write_disk_secure746.c		\
235	test_write_disk_sparse.c		\
236	test_write_disk_symlink.c		\
237	test_write_disk_times.c			\
238	test_write_filter_b64encode.c		\
239	test_write_filter_bzip2.c		\
240	test_write_filter_compress.c		\
241	test_write_filter_gzip.c		\
242	test_write_filter_gzip_timestamp.c	\
243	test_write_filter_lrzip.c		\
244	test_write_filter_lz4.c			\
245	test_write_filter_lzip.c		\
246	test_write_filter_lzma.c		\
247	test_write_filter_lzop.c		\
248	test_write_filter_program.c		\
249	test_write_filter_uuencode.c		\
250	test_write_filter_xz.c			\
251	test_write_filter_zstd.c		\
252	test_write_format_7zip.c		\
253	test_write_format_7zip_empty.c		\
254	test_write_format_7zip_large.c		\
255	test_write_format_ar.c			\
256	test_write_format_cpio.c		\
257	test_write_format_cpio_empty.c		\
258	test_write_format_cpio_newc.c		\
259	test_write_format_cpio_odc.c		\
260	test_write_format_gnutar.c		\
261	test_write_format_gnutar_filenames.c	\
262	test_write_format_iso9660.c		\
263	test_write_format_iso9660_boot.c	\
264	test_write_format_iso9660_empty.c	\
265	test_write_format_iso9660_filename.c	\
266	test_write_format_iso9660_zisofs.c	\
267	test_write_format_mtree.c		\
268	test_write_format_mtree_absolute_path.c	\
269	test_write_format_mtree_classic.c	\
270	test_write_format_mtree_classic_indent.c	\
271	test_write_format_mtree_fflags.c	\
272	test_write_format_mtree_no_separator.c	\
273	test_write_format_mtree_quoted_filename.c	\
274	test_write_format_pax.c			\
275	test_write_format_raw.c			\
276	test_write_format_raw_b64.c		\
277	test_write_format_shar_empty.c		\
278	test_write_format_tar.c			\
279	test_write_format_tar_empty.c		\
280	test_write_format_tar_sparse.c		\
281	test_write_format_tar_ustar.c		\
282	test_write_format_tar_v7tar.c		\
283	test_write_format_warc.c		\
284	test_write_format_warc_empty.c		\
285	test_write_format_xar.c			\
286	test_write_format_xar_empty.c		\
287	test_write_format_zip.c			\
288	test_write_format_zip_compression_store.c	\
289	test_write_format_zip_empty.c		\
290	test_write_format_zip_empty_zip64.c	\
291	test_write_format_zip_file.c		\
292	test_write_format_zip_file_zip64.c	\
293	test_write_format_zip_large.c		\
294	test_write_format_zip_zip64.c		\
295	test_write_open_memory.c		\
296	test_write_read_format_zip.c		\
297	test_xattr_platform.c			\
298	test_zip_filename_encoding.c
299
300# Deterministic failures:
301# Crashes with SIGBUS
302BROKEN_TESTS+=			test_archive_rmd160
303# Fails with `libarchive/test/test_archive_crypto.c:121: md != actualmd`
304BROKEN_TESTS+=			test_archive_sha384
305# Fails with `test_compat_pax_libarchive_2x.c:122: ARCHIVE_WARN != archive_read_next_header(a, &ae)`
306BROKEN_TESTS+=			test_compat_pax_libarchive_2x
307# Fails with `test_read_disk_directory_traversals.c:1094: File at has atime 886622, 1443306049 seconds ago`
308BROKEN_TESTS+=			test_read_disk_directory_traversals
309
310# Non-deterministic failures:
311# (Times out?) [and] crashes
312BROKEN_TESTS+=			test_fuzz_rar
313
314# Build the test program.
315SRCS.libarchive_test=		\
316	${TESTS_SRCS}		\
317	read_open_memory.c	\
318	list.h
319
320DPADD.libarchive_test=	${LIBARCHIVE}
321LDADD.libarchive_test=	-larchive
322
323.PATH: ${LIBARCHIVEDIR}/test_utils
324SRCS.libarchive_test+=	test_main.c	\
325			test_utils.c
326
327# list.h is just a list of all tests, as indicated by DEFINE_TEST macro lines
328list.h: ${TESTS_SRCS} Makefile
329	@(cd ${LIBARCHIVEDIR}/libarchive/test && \
330	grep -E -h ^DEFINE_TEST ${.ALLSRC:N*Makefile} | \
331	    egrep -v '${BROKEN_TESTS:tW:C/ /|/g}') > ${.TARGET}.tmp
332	@mv ${.TARGET}.tmp ${.TARGET}
333
334CLEANFILES+=	list.h list.h.tmp
335
336FILES+=	README
337FILES+=	test_acl_pax_posix1e.tar.uu
338FILES+=	test_acl_pax_nfs4.tar.uu
339FILES+=	test_archive_string_conversion.txt.Z.uu
340FILES+=	test_compat_bzip2_1.tbz.uu
341FILES+=	test_compat_bzip2_2.tbz.uu
342FILES+=	test_compat_cpio_1.cpio.uu
343FILES+=	test_compat_gtar_1.tar.uu
344FILES+=	test_compat_gtar_2.tar.uu
345FILES+=	test_compat_gzip_1.tgz.uu
346FILES+=	test_compat_gzip_2.tgz.uu
347FILES+=	test_compat_lz4_1.tar.lz4.uu
348FILES+=	test_compat_lz4_2.tar.lz4.uu
349FILES+=	test_compat_lz4_3.tar.lz4.uu
350FILES+=	test_compat_lz4_B4.tar.lz4.uu
351FILES+=	test_compat_lz4_B4BD.tar.lz4.uu
352FILES+=	test_compat_lz4_B4BDBX.tar.lz4.uu
353FILES+=	test_compat_lz4_B5.tar.lz4.uu
354FILES+=	test_compat_lz4_B5BD.tar.lz4.uu
355FILES+=	test_compat_lz4_B6.tar.lz4.uu
356FILES+=	test_compat_lz4_B6BD.tar.lz4.uu
357FILES+=	test_compat_lz4_B7.tar.lz4.uu
358FILES+=	test_compat_lz4_B7BD.tar.lz4.uu
359FILES+=	test_compat_lzip_1.tlz.uu
360FILES+=	test_compat_lzip_2.tlz.uu
361FILES+=	test_compat_lzma_1.tlz.uu
362FILES+=	test_compat_lzma_2.tlz.uu
363FILES+=	test_compat_lzma_3.tlz.uu
364FILES+=	test_compat_lzop_1.tar.lzo.uu
365FILES+=	test_compat_lzop_2.tar.lzo.uu
366FILES+=	test_compat_lzop_3.tar.lzo.uu
367FILES+=	test_compat_mac-1.tar.Z.uu
368FILES+=	test_compat_mac-2.tar.Z.uu
369FILES+=	test_compat_perl_archive_tar.tar.uu
370FILES+=	test_compat_plexus_archiver_tar.tar.uu
371FILES+=	test_compat_solaris_pax_sparse_1.pax.Z.uu
372FILES+=	test_compat_solaris_pax_sparse_2.pax.Z.uu
373FILES+=	test_compat_solaris_tar_acl.tar.uu
374FILES+=	test_compat_star_acl_nfs4.tar.uu
375FILES+=	test_compat_star_acl_posix1e.tar.uu
376FILES+=	test_compat_tar_hardlink_1.tar.uu
377FILES+=	test_compat_uudecode_large.tar.Z.uu
378FILES+=	test_compat_xz_1.txz.uu
379FILES+=	test_compat_zip_1.zip.uu
380FILES+=	test_compat_zip_2.zip.uu
381FILES+=	test_compat_zip_3.zip.uu
382FILES+=	test_compat_zip_4.zip.uu
383FILES+=	test_compat_zip_5.zip.uu
384FILES+=	test_compat_zip_6.zip.uu
385FILES+=	test_compat_zip_7.xps.uu
386FILES+=	test_compat_zip_8.zip.uu
387FILES+=	test_compat_zstd_1.tar.zst.uu
388FILES+=	test_compat_zstd_2.tar.zst.uu
389FILES+=	test_fuzz.cab.uu
390FILES+=	test_fuzz.lzh.uu
391FILES+=	test_fuzz_1.iso.Z.uu
392FILES+=	test_pax_filename_encoding.tar.uu
393FILES+=	test_pax_xattr_header_all.tar.uu
394FILES+=	test_pax_xattr_header_libarchive.tar.uu
395FILES+=	test_pax_xattr_header_schily.tar.uu
396FILES+=	test_rar_multivolume_multiple_files.part1.rar.uu
397FILES+=	test_rar_multivolume_multiple_files.part2.rar.uu
398FILES+=	test_rar_multivolume_multiple_files.part3.rar.uu
399FILES+=	test_rar_multivolume_multiple_files.part4.rar.uu
400FILES+=	test_rar_multivolume_multiple_files.part5.rar.uu
401FILES+=	test_rar_multivolume_multiple_files.part6.rar.uu
402FILES+=	test_rar_multivolume_single_file.part1.rar.uu
403FILES+=	test_rar_multivolume_single_file.part2.rar.uu
404FILES+=	test_rar_multivolume_single_file.part3.rar.uu
405FILES+=	test_rar_multivolume_uncompressed_files.part01.rar.uu
406FILES+=	test_rar_multivolume_uncompressed_files.part02.rar.uu
407FILES+=	test_rar_multivolume_uncompressed_files.part03.rar.uu
408FILES+=	test_rar_multivolume_uncompressed_files.part04.rar.uu
409FILES+=	test_rar_multivolume_uncompressed_files.part05.rar.uu
410FILES+=	test_rar_multivolume_uncompressed_files.part06.rar.uu
411FILES+=	test_rar_multivolume_uncompressed_files.part07.rar.uu
412FILES+=	test_rar_multivolume_uncompressed_files.part08.rar.uu
413FILES+=	test_rar_multivolume_uncompressed_files.part09.rar.uu
414FILES+=	test_rar_multivolume_uncompressed_files.part10.rar.uu
415FILES+=	test_read_filter_grzip.tar.grz.uu
416FILES+=	test_read_filter_lrzip.tar.lrz.uu
417FILES+=	test_read_filter_lzop.tar.lzo.uu
418FILES+=	test_read_filter_lzop_multiple_parts.tar.lzo.uu
419FILES+=	test_read_format_7zip_bcj2_bzip2.7z.uu
420FILES+=	test_read_format_7zip_bcj2_copy_1.7z.uu
421FILES+=	test_read_format_7zip_bcj2_copy_2.7z.uu
422FILES+=	test_read_format_7zip_bcj2_copy_lzma.7z.uu
423FILES+=	test_read_format_7zip_bcj2_deflate.7z.uu
424FILES+=	test_read_format_7zip_bcj2_lzma1_1.7z.uu
425FILES+=	test_read_format_7zip_bcj2_lzma1_2.7z.uu
426FILES+=	test_read_format_7zip_bcj2_lzma2_1.7z.uu
427FILES+=	test_read_format_7zip_bcj2_lzma2_2.7z.uu
428FILES+=	test_read_format_7zip_bcj_bzip2.7z.uu
429FILES+=	test_read_format_7zip_bcj_copy.7z.uu
430FILES+=	test_read_format_7zip_bcj_deflate.7z.uu
431FILES+=	test_read_format_7zip_bcj_lzma1.7z.uu
432FILES+=	test_read_format_7zip_bcj_lzma2.7z.uu
433FILES+=	test_read_format_7zip_bzip2.7z.uu
434FILES+=	test_read_format_7zip_copy.7z.uu
435FILES+=	test_read_format_7zip_copy_2.7z.uu
436FILES+=	test_read_format_7zip_deflate.7z.uu
437FILES+=	test_read_format_7zip_delta_lzma1.7z.uu
438FILES+=	test_read_format_7zip_delta_lzma2.7z.uu
439FILES+=	test_read_format_7zip_delta4_lzma1.7z.uu
440FILES+=	test_read_format_7zip_delta4_lzma2.7z.uu
441FILES+=	test_read_format_7zip_empty_archive.7z.uu
442FILES+=	test_read_format_7zip_empty_file.7z.uu
443FILES+=	test_read_format_7zip_encryption.7z.uu
444FILES+=	test_read_format_7zip_encryption_header.7z.uu
445FILES+=	test_read_format_7zip_encryption_partially.7z.uu
446FILES+=	test_read_format_7zip_lzma1.7z.uu
447FILES+=	test_read_format_7zip_lzma1_2.7z.uu
448FILES+=	test_read_format_7zip_lzma1_lzma2.7z.uu
449FILES+=	test_read_format_7zip_lzma2.7z.uu
450FILES+=	test_read_format_7zip_malformed.7z.uu
451FILES+=	test_read_format_7zip_malformed2.7z.uu
452FILES+=	test_read_format_7zip_packinfo_digests.7z.uu
453FILES+=	test_read_format_7zip_ppmd.7z.uu
454FILES+=	test_read_format_7zip_symbolic_name.7z.uu
455FILES+=	test_read_format_ar.ar.uu
456FILES+=	test_read_format_cab_1.cab.uu
457FILES+=	test_read_format_cab_2.cab.uu
458FILES+=	test_read_format_cab_3.cab.uu
459FILES+=	test_read_format_cab_filename_cp932.cab.uu
460FILES+=	test_read_format_cpio_bin_be.cpio.uu
461FILES+=	test_read_format_cpio_bin_le.cpio.uu
462FILES+=	test_read_format_cpio_filename_cp866.cpio.uu
463FILES+=	test_read_format_cpio_filename_eucjp.cpio.uu
464FILES+=	test_read_format_cpio_filename_koi8r.cpio.uu
465FILES+=	test_read_format_cpio_filename_utf8_jp.cpio.uu
466FILES+=	test_read_format_cpio_filename_utf8_ru.cpio.uu
467FILES+=	test_read_format_cpio_svr4_bzip2_rpm.rpm.uu
468FILES+=	test_read_format_cpio_svr4_gzip_rpm.rpm.uu
469FILES+=	test_read_format_gtar_filename_cp866.tar.Z.uu
470FILES+=	test_read_format_gtar_filename_eucjp.tar.Z.uu
471FILES+=	test_read_format_gtar_filename_koi8r.tar.Z.uu
472FILES+=	test_read_format_gtar_sparse_1_13.tar.uu
473FILES+=	test_read_format_gtar_sparse_1_17.tar.uu
474FILES+=	test_read_format_gtar_sparse_1_17_posix00.tar.uu
475FILES+=	test_read_format_gtar_sparse_1_17_posix01.tar.uu
476FILES+=	test_read_format_gtar_sparse_1_17_posix10.tar.uu
477FILES+=	test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu
478FILES+=	test_read_format_gtar_sparse_skip_entry.tar.Z.uu
479FILES+=	test_read_format_iso.iso.Z.uu
480FILES+=	test_read_format_iso_2.iso.Z.uu
481FILES+=	test_read_format_iso_joliet.iso.Z.uu
482FILES+=	test_read_format_iso_joliet_by_nero.iso.Z.uu
483FILES+=	test_read_format_iso_joliet_long.iso.Z.uu
484FILES+=	test_read_format_iso_joliet_rockridge.iso.Z.uu
485FILES+=	test_read_format_iso_multi_extent.iso.Z.uu
486FILES+=	test_read_format_iso_rockridge.iso.Z.uu
487FILES+=	test_read_format_iso_rockridge_ce.iso.Z.uu
488FILES+=	test_read_format_iso_rockridge_new.iso.Z.uu
489FILES+=	test_read_format_iso_rockridge_rr_moved.iso.Z.uu
490FILES+=	test_read_format_iso_xorriso.iso.Z.uu
491FILES+=	test_read_format_iso_zisofs.iso.Z.uu
492FILES+=	test_read_format_lha_bugfix_0.lzh.uu
493FILES+=	test_read_format_lha_filename_cp932.lzh.uu
494FILES+=	test_read_format_lha_filename_utf16.lzh.uu
495FILES+=	test_read_format_lha_header0.lzh.uu
496FILES+=	test_read_format_lha_header1.lzh.uu
497FILES+=	test_read_format_lha_header2.lzh.uu
498FILES+=	test_read_format_lha_header3.lzh.uu
499FILES+=	test_read_format_lha_lh0.lzh.uu
500FILES+=	test_read_format_lha_lh6.lzh.uu
501FILES+=	test_read_format_lha_lh7.lzh.uu
502FILES+=	test_read_format_lha_withjunk.lzh.uu
503FILES+=	test_read_format_mtree.mtree.uu
504FILES+=	test_read_format_mtree_crash747.mtree.bz2.uu
505FILES+=	test_read_format_mtree_nomagic.mtree.uu
506FILES+=	test_read_format_mtree_nomagic2.mtree.uu
507FILES+=	test_read_format_mtree_nomagic3.mtree.uu
508FILES+=	test_read_format_mtree_noprint.mtree.uu
509FILES+=	test_read_format_rar.rar.uu
510FILES+=	test_read_format_rar_binary_data.rar.uu
511FILES+=	test_read_format_rar_compress_best.rar.uu
512FILES+=	test_read_format_rar_compress_normal.rar.uu
513FILES+=	test_read_format_rar_encryption_data.rar.uu
514FILES+=	test_read_format_rar_encryption_header.rar.uu
515FILES+=	test_read_format_rar_encryption_partially.rar.uu
516FILES+=	test_read_format_rar_invalid1.rar.uu
517FILES+=	test_read_format_rar_multi_lzss_blocks.rar.uu
518FILES+=	test_read_format_rar_multivolume.part0001.rar.uu
519FILES+=	test_read_format_rar_multivolume.part0002.rar.uu
520FILES+=	test_read_format_rar_multivolume.part0003.rar.uu
521FILES+=	test_read_format_rar_multivolume.part0004.rar.uu
522FILES+=	test_read_format_rar_noeof.rar.uu
523FILES+=	test_read_format_rar_ppmd_lzss_conversion.rar.uu
524FILES+=	test_read_format_rar_ppmd_use_after_free.rar.uu
525FILES+=	test_read_format_rar_ppmd_use_after_free2.rar.uu
526FILES+=	test_read_format_rar_sfx.exe.uu
527FILES+=	test_read_format_rar_subblock.rar.uu
528FILES+=	test_read_format_rar_unicode.rar.uu
529FILES+=	test_read_format_rar_windows.rar.uu
530FILES+=	test_read_format_rar5_arm.rar.uu
531FILES+=	test_read_format_rar5_arm_filter_on_window_boundary.rar.uu
532FILES+=	test_read_format_rar5_blake2.rar.uu
533FILES+=	test_read_format_rar5_block_size_is_too_small.rar.uu
534FILES+=	test_read_format_rar5_compressed.rar.uu
535FILES+=	test_read_format_rar5_different_solid_window_size.rar.uu
536FILES+=	test_read_format_rar5_different_window_size.rar.uu
537FILES+=	test_read_format_rar5_different_winsize_on_merge.rar.uu
538FILES+=	test_read_format_rar5_distance_overflow.rar.uu
539FILES+=	test_read_format_rar5_extra_field_version.rar.uu
540FILES+=	test_read_format_rar5_fileattr.rar.uu
541FILES+=	test_read_format_rar5_hardlink.rar.uu
542FILES+=	test_read_format_rar5_invalid_dict_reference.rar.uu
543FILES+=	test_read_format_rar5_leftshift1.rar.uu
544FILES+=	test_read_format_rar5_leftshift2.rar.uu
545FILES+=	test_read_format_rar5_multiarchive.part01.rar.uu
546FILES+=	test_read_format_rar5_multiarchive.part02.rar.uu
547FILES+=	test_read_format_rar5_multiarchive.part03.rar.uu
548FILES+=	test_read_format_rar5_multiarchive.part04.rar.uu
549FILES+=	test_read_format_rar5_multiarchive.part05.rar.uu
550FILES+=	test_read_format_rar5_multiarchive.part06.rar.uu
551FILES+=	test_read_format_rar5_multiarchive.part07.rar.uu
552FILES+=	test_read_format_rar5_multiarchive.part08.rar.uu
553FILES+=	test_read_format_rar5_multiarchive_solid.part01.rar.uu
554FILES+=	test_read_format_rar5_multiarchive_solid.part02.rar.uu
555FILES+=	test_read_format_rar5_multiarchive_solid.part03.rar.uu
556FILES+=	test_read_format_rar5_multiarchive_solid.part04.rar.uu
557FILES+=	test_read_format_rar5_multiple_files.rar.uu
558FILES+=	test_read_format_rar5_multiple_files_solid.rar.uu
559FILES+=	test_read_format_rar5_nonempty_dir_stream.rar.uu
560FILES+=	test_read_format_rar5_owner.rar.uu
561FILES+=	test_read_format_rar5_readtables_overflow.rar.uu
562FILES+=	test_read_format_rar5_solid.rar.uu
563FILES+=	test_read_format_rar5_stored.rar.uu
564FILES+=	test_read_format_rar5_stored_manyfiles.rar.uu
565FILES+=	test_read_format_rar5_symlink.rar.uu
566FILES+=	test_read_format_rar5_truncated_huff.rar.uu
567FILES+=	test_read_format_rar5_win32.rar.uu
568FILES+=	test_read_format_raw.bufr.uu
569FILES+=	test_read_format_raw.data.Z.uu
570FILES+=	test_read_format_raw.data.gz.uu
571FILES+=	test_read_format_raw.data.uu
572FILES+=	test_read_format_tar_concatenated.tar.uu
573FILES+=	test_read_format_tar_empty_filename.tar.uu
574FILES+=	test_read_format_tar_empty_pax.tar.Z.uu
575FILES+=	test_read_format_tar_empty_with_gnulabel.tar.uu
576FILES+=	test_read_format_tar_filename_koi8r.tar.Z.uu
577FILES+=	test_read_format_ustar_filename_cp866.tar.Z.uu
578FILES+=	test_read_format_ustar_filename_eucjp.tar.Z.uu
579FILES+=	test_read_format_ustar_filename_koi8r.tar.Z.uu
580FILES+=	test_read_format_warc.warc.uu
581FILES+=	test_read_format_zip.zip.uu
582FILES+=	test_read_format_zip_7075_utf8_paths.zip.uu
583FILES+=	test_read_format_zip_bz2_hang.zip.uu
584FILES+=	test_read_format_zip_bzip2.zipx.uu
585FILES+=	test_read_format_zip_bzip2_multi.zipx.uu
586FILES+=	test_read_format_zip_comment_stored_1.zip.uu
587FILES+=	test_read_format_zip_comment_stored_2.zip.uu
588FILES+=	test_read_format_zip_encryption_data.zip.uu
589FILES+=	test_read_format_zip_encryption_header.zip.uu
590FILES+=	test_read_format_zip_encryption_partially.zip.uu
591FILES+=	test_read_format_zip_extra_padding.zip.uu
592FILES+=	test_read_format_zip_filename_cp866.zip.uu
593FILES+=	test_read_format_zip_filename_cp932.zip.uu
594FILES+=	test_read_format_zip_filename_koi8r.zip.uu
595FILES+=	test_read_format_zip_filename_utf8_jp.zip.uu
596FILES+=	test_read_format_zip_filename_utf8_ru.zip.uu
597FILES+=	test_read_format_zip_filename_utf8_ru2.zip.uu
598FILES+=	test_read_format_zip_high_compression.zip.uu
599FILES+=	test_read_format_zip_jar.jar.uu
600FILES+=	test_read_format_zip_length_at_end.zip.uu
601FILES+=	test_read_format_zip_lzma_alone_leak.zipx.uu
602FILES+=	test_read_format_zip_lzma.zipx.uu
603FILES+=	test_read_format_zip_lzma_multi.zipx.uu
604FILES+=	test_read_format_zip_mac_metadata.zip.uu
605FILES+=	test_read_format_zip_malformed1.zip.uu
606FILES+=	test_read_format_zip_msdos.zip.uu
607FILES+=	test_read_format_zip_nested.zip.uu
608FILES+=	test_read_format_zip_nofiletype.zip.uu
609FILES+=	test_read_format_zip_padded1.zip.uu
610FILES+=	test_read_format_zip_padded2.zip.uu
611FILES+=	test_read_format_zip_padded3.zip.uu
612FILES+=	test_read_format_zip_ppmd8.zipx.uu
613FILES+=	test_read_format_zip_ppmd8_crash_1.zipx.uu             
614FILES+=	test_read_format_zip_ppmd8_crash_2.zipx.uu             
615FILES+=	test_read_format_zip_ppmd8_multi.zipx.uu
616FILES+=	test_read_format_zip_sfx.uu
617FILES+=	test_read_format_zip_symlink.zip.uu
618FILES+=	test_read_format_zip_traditional_encryption_data.zip.uu
619FILES+=	test_read_format_zip_ux.zip.uu
620FILES+=	test_read_format_zip_with_invalid_traditional_eocd.zip.uu
621FILES+=	test_read_format_zip_winzip_aes128.zip.uu
622FILES+=	test_read_format_zip_winzip_aes256.zip.uu
623FILES+=	test_read_format_zip_winzip_aes256_large.zip.uu
624FILES+=	test_read_format_zip_winzip_aes256_stored.zip.uu
625FILES+=	test_read_format_zip_xz_multi.zipx.uu
626FILES+=	test_read_format_zip_zip64a.zip.uu
627FILES+=	test_read_format_zip_zip64b.zip.uu
628FILES+=	test_read_large_splitted_rar_aa.uu
629FILES+=	test_read_large_splitted_rar_ab.uu
630FILES+=	test_read_large_splitted_rar_ac.uu
631FILES+=	test_read_large_splitted_rar_ad.uu
632FILES+=	test_read_large_splitted_rar_ae.uu
633FILES+=	test_read_pax_xattr_rht_security_selinux.tar.uu
634FILES+=	test_read_pax_xattr_schily.tar.uu
635FILES+=	test_read_splitted_rar_aa.uu
636FILES+=	test_read_splitted_rar_ab.uu
637FILES+=	test_read_splitted_rar_ac.uu
638FILES+=	test_read_splitted_rar_ad.uu
639FILES+=	test_read_too_many_filters.gz.uu
640FILES+=	test_splitted_rar_seek_support_aa.uu
641FILES+=	test_splitted_rar_seek_support_ab.uu
642FILES+=	test_splitted_rar_seek_support_ac.uu
643FILES+=	test_write_disk_appledouble.cpio.gz.uu
644FILES+=	test_write_disk_hfs_compression.tgz.uu
645FILES+=	test_write_disk_mac_metadata.tar.gz.uu
646FILES+=	test_write_disk_no_hfs_compression.tgz.uu
647
648.include <bsd.test.mk>
649