xref: /freebsd/lib/libarchive/tests/Makefile (revision a08cc1ee27a0314cfcb84f76c5eefd778c75d704)
159e2ff55SEnji Cooper# $FreeBSD$
259e2ff55SEnji Cooper
343faedc1SGlen BarberPACKAGE=	tests
443faedc1SGlen Barber
53c89d6b0SBryan Drewery_LIBARCHIVEDIR=	${SRCTOP}/contrib/libarchive
659e2ff55SEnji Cooper
759e2ff55SEnji CooperATF_TESTS_SH+=	functional_test
859e2ff55SEnji Cooper
9cda20f96SRuslan BukinTEST_METADATA.functional_test+=	timeout="600"
10cda20f96SRuslan Bukin
1159e2ff55SEnji CooperBINDIR=	${TESTSDIR}
1259e2ff55SEnji Cooper
1359e2ff55SEnji CooperPROGS+=	libarchive_test
1459e2ff55SEnji Cooper
15*a08cc1eeSEnji CooperCFLAGS+= -I${.CURDIR} -I${.CURDIR:H} -I${.OBJDIR}
163c89d6b0SBryan DreweryCFLAGS+= -I${_LIBARCHIVEDIR}/libarchive -I${_LIBARCHIVEDIR}/test_utils
1759e2ff55SEnji CooperCFLAGS+= -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1
1859e2ff55SEnji Cooper
1959e2ff55SEnji Cooper# Uncomment to link against dmalloc
2059e2ff55SEnji Cooper#LDADD+= -L/usr/local/lib -ldmalloc
2159e2ff55SEnji Cooper#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC
2259e2ff55SEnji Cooper
233c89d6b0SBryan Drewery.PATH: ${_LIBARCHIVEDIR}/libarchive/test
2459e2ff55SEnji CooperTESTS_SRCS= \
2559e2ff55SEnji Cooper	test_acl_freebsd_nfs4.c			\
2659e2ff55SEnji Cooper	test_acl_freebsd_posix1e.c		\
2759e2ff55SEnji Cooper	test_acl_nfs4.c				\
2859e2ff55SEnji Cooper	test_acl_pax.c				\
2959e2ff55SEnji Cooper	test_acl_posix1e.c			\
30e9ed7ea4SMartin Matuska	test_acl_text.c				\
3159e2ff55SEnji Cooper	test_archive_api_feature.c		\
3259e2ff55SEnji Cooper	test_archive_clear_error.c		\
3359e2ff55SEnji Cooper	test_archive_cmdline.c			\
34cdf63a70SMartin Matuska	test_archive_digest.c			\
3559e2ff55SEnji Cooper	test_archive_getdate.c			\
3659e2ff55SEnji Cooper	test_archive_match_time.c		\
3759e2ff55SEnji Cooper	test_archive_match_owner.c		\
3859e2ff55SEnji Cooper	test_archive_match_path.c		\
3959e2ff55SEnji Cooper	test_archive_pathmatch.c		\
40cdf63a70SMartin Matuska	test_archive_read_add_passphrase.c	\
4159e2ff55SEnji Cooper	test_archive_read_close_twice.c		\
4259e2ff55SEnji Cooper	test_archive_read_close_twice_open_fd.c	\
4359e2ff55SEnji Cooper	test_archive_read_close_twice_open_filename.c	\
4459e2ff55SEnji Cooper	test_archive_read_multiple_data_objects.c	\
4559e2ff55SEnji Cooper	test_archive_read_next_header_empty.c	\
4659e2ff55SEnji Cooper	test_archive_read_next_header_raw.c	\
4759e2ff55SEnji Cooper	test_archive_read_open2.c		\
4859e2ff55SEnji Cooper	test_archive_read_set_filter_option.c	\
4959e2ff55SEnji Cooper	test_archive_read_set_format_option.c	\
5059e2ff55SEnji Cooper	test_archive_read_set_option.c		\
5159e2ff55SEnji Cooper	test_archive_read_set_options.c		\
5259e2ff55SEnji Cooper	test_archive_read_support.c		\
5359e2ff55SEnji Cooper	test_archive_set_error.c		\
5459e2ff55SEnji Cooper	test_archive_string.c			\
5559e2ff55SEnji Cooper	test_archive_string_conversion.c	\
5659e2ff55SEnji Cooper	test_archive_write_add_filter_by_name.c	\
5759e2ff55SEnji Cooper	test_archive_write_set_filter_option.c	\
5859e2ff55SEnji Cooper	test_archive_write_set_format_by_name.c	\
59cdf63a70SMartin Matuska	test_archive_write_set_format_filter_by_ext.c \
6059e2ff55SEnji Cooper	test_archive_write_set_format_option.c	\
6159e2ff55SEnji Cooper	test_archive_write_set_option.c		\
6259e2ff55SEnji Cooper	test_archive_write_set_options.c	\
63cdf63a70SMartin Matuska	test_archive_write_set_passphrase.c	\
6459e2ff55SEnji Cooper	test_bad_fd.c				\
6559e2ff55SEnji Cooper	test_compat_bzip2.c			\
6659e2ff55SEnji Cooper	test_compat_cpio.c			\
6759e2ff55SEnji Cooper	test_compat_gtar.c			\
6859e2ff55SEnji Cooper	test_compat_gzip.c			\
69cdf63a70SMartin Matuska	test_compat_lz4.c			\
7059e2ff55SEnji Cooper	test_compat_lzip.c			\
7159e2ff55SEnji Cooper	test_compat_lzma.c			\
7259e2ff55SEnji Cooper	test_compat_lzop.c			\
7359e2ff55SEnji Cooper	test_compat_mac.c			\
7459e2ff55SEnji Cooper	test_compat_pax_libarchive_2x.c		\
75007dbc1fSMartin Matuska	test_compat_perl_archive_tar.c		\
76a2e802b7SMartin Matuska	test_compat_plexus_archiver_tar.c	\
7759e2ff55SEnji Cooper	test_compat_solaris_tar_acl.c		\
7859e2ff55SEnji Cooper	test_compat_solaris_pax_sparse.c	\
79e9ed7ea4SMartin Matuska	test_compat_star_acl.c			\
8059e2ff55SEnji Cooper	test_compat_tar_hardlink.c		\
8159e2ff55SEnji Cooper	test_compat_uudecode.c			\
82cdf63a70SMartin Matuska	test_compat_uudecode_large.c		\
8359e2ff55SEnji Cooper	test_compat_xz.c			\
8459e2ff55SEnji Cooper	test_compat_zip.c			\
8559e2ff55SEnji Cooper	test_empty_write.c			\
8659e2ff55SEnji Cooper	test_entry.c				\
8759e2ff55SEnji Cooper	test_entry_strmode.c			\
8859e2ff55SEnji Cooper	test_extattr_freebsd.c			\
8959e2ff55SEnji Cooper	test_filter_count.c			\
9059e2ff55SEnji Cooper	test_fuzz.c				\
9159e2ff55SEnji Cooper	test_gnutar_filename_encoding.c		\
9259e2ff55SEnji Cooper	test_link_resolver.c			\
9359e2ff55SEnji Cooper	test_open_fd.c				\
9459e2ff55SEnji Cooper	test_open_failure.c			\
9559e2ff55SEnji Cooper	test_open_file.c			\
9659e2ff55SEnji Cooper	test_open_filename.c			\
9759e2ff55SEnji Cooper	test_pax_filename_encoding.c		\
9859e2ff55SEnji Cooper	test_read_data_large.c			\
9959e2ff55SEnji Cooper	test_read_disk.c			\
10059e2ff55SEnji Cooper	test_read_disk_directory_traversals.c	\
10159e2ff55SEnji Cooper	test_read_disk_entry_from_file.c	\
10259e2ff55SEnji Cooper	test_read_extract.c			\
10359e2ff55SEnji Cooper	test_read_file_nonexistent.c		\
104cdf63a70SMartin Matuska	test_read_filter_compress.c		\
10559e2ff55SEnji Cooper	test_read_filter_grzip.c		\
10659e2ff55SEnji Cooper	test_read_filter_lrzip.c		\
10759e2ff55SEnji Cooper	test_read_filter_lzop.c			\
10859e2ff55SEnji Cooper	test_read_filter_lzop_multiple_parts.c	\
10959e2ff55SEnji Cooper	test_read_filter_program.c		\
11059e2ff55SEnji Cooper	test_read_filter_program_signature.c	\
11159e2ff55SEnji Cooper	test_read_filter_uudecode.c		\
11259e2ff55SEnji Cooper	test_read_format_7zip.c			\
113cdf63a70SMartin Matuska	test_read_format_7zip_encryption_data.c \
114cdf63a70SMartin Matuska	test_read_format_7zip_encryption_header.c	\
115cdf63a70SMartin Matuska	test_read_format_7zip_encryption_partially.c	\
116cdf63a70SMartin Matuska	test_read_format_7zip_malformed.c	\
11759e2ff55SEnji Cooper	test_read_format_ar.c			\
11859e2ff55SEnji Cooper	test_read_format_cab.c			\
11959e2ff55SEnji Cooper	test_read_format_cab_filename.c		\
12059e2ff55SEnji Cooper	test_read_format_cpio_afio.c		\
12159e2ff55SEnji Cooper	test_read_format_cpio_bin.c		\
12259e2ff55SEnji Cooper	test_read_format_cpio_bin_Z.c		\
12359e2ff55SEnji Cooper	test_read_format_cpio_bin_be.c		\
12459e2ff55SEnji Cooper	test_read_format_cpio_bin_bz2.c		\
12559e2ff55SEnji Cooper	test_read_format_cpio_bin_gz.c		\
126cdf63a70SMartin Matuska	test_read_format_cpio_bin_le.c		\
12759e2ff55SEnji Cooper	test_read_format_cpio_bin_lzip.c	\
12859e2ff55SEnji Cooper	test_read_format_cpio_bin_lzma.c	\
12959e2ff55SEnji Cooper	test_read_format_cpio_bin_xz.c		\
13059e2ff55SEnji Cooper	test_read_format_cpio_filename.c	\
13159e2ff55SEnji Cooper	test_read_format_cpio_odc.c		\
13259e2ff55SEnji Cooper	test_read_format_cpio_svr4_gzip.c	\
13359e2ff55SEnji Cooper	test_read_format_cpio_svr4c_Z.c		\
13459e2ff55SEnji Cooper	test_read_format_cpio_svr4_bzip2_rpm.c	\
13559e2ff55SEnji Cooper	test_read_format_cpio_svr4_gzip_rpm.c	\
13659e2ff55SEnji Cooper	test_read_format_empty.c		\
13759e2ff55SEnji Cooper	test_read_format_gtar_filename.c	\
13859e2ff55SEnji Cooper	test_read_format_gtar_gz.c		\
13959e2ff55SEnji Cooper	test_read_format_gtar_lzma.c		\
14059e2ff55SEnji Cooper	test_read_format_gtar_sparse.c		\
14159e2ff55SEnji Cooper	test_read_format_gtar_sparse_skip_entry.c \
14259e2ff55SEnji Cooper	test_read_format_iso_Z.c		\
14359e2ff55SEnji Cooper	test_read_format_iso_multi_extent.c	\
14459e2ff55SEnji Cooper	test_read_format_iso_xorriso.c		\
14559e2ff55SEnji Cooper	test_read_format_isorr_rr_moved.c	\
14659e2ff55SEnji Cooper	test_read_format_isojoliet_bz2.c	\
14759e2ff55SEnji Cooper	test_read_format_isojoliet_long.c	\
14859e2ff55SEnji Cooper	test_read_format_isojoliet_rr.c		\
14959e2ff55SEnji Cooper	test_read_format_isojoliet_versioned.c	\
15059e2ff55SEnji Cooper	test_read_format_isorr_bz2.c		\
15159e2ff55SEnji Cooper	test_read_format_isorr_ce.c		\
15259e2ff55SEnji Cooper	test_read_format_isorr_new_bz2.c	\
15359e2ff55SEnji Cooper	test_read_format_isozisofs_bz2.c	\
15459e2ff55SEnji Cooper	test_read_format_lha.c			\
155cdf63a70SMartin Matuska	test_read_format_lha_bugfix_0.c		\
15659e2ff55SEnji Cooper	test_read_format_lha_filename.c		\
15759e2ff55SEnji Cooper	test_read_format_mtree.c		\
158f3e9b21aSMartin Matuska	test_read_format_mtree_crash747.c	\
15959e2ff55SEnji Cooper	test_read_format_pax_bz2.c		\
16059e2ff55SEnji Cooper	test_read_format_rar.c			\
161cdf63a70SMartin Matuska	test_read_format_rar_encryption_data.c	\
162cdf63a70SMartin Matuska	test_read_format_rar_encryption_header.c	\
163cdf63a70SMartin Matuska	test_read_format_rar_encryption_partially.c	\
164f061a221SMartin Matuska	test_read_format_rar_invalid1.c		\
16559e2ff55SEnji Cooper	test_read_format_raw.c			\
16659e2ff55SEnji Cooper	test_read_format_tar.c			\
167cdf63a70SMartin Matuska	test_read_format_tar_concatenated.c	\
16859e2ff55SEnji Cooper	test_read_format_tar_empty_filename.c	\
169cdf63a70SMartin Matuska	test_read_format_tar_empty_pax.c	\
17059e2ff55SEnji Cooper	test_read_format_tar_filename.c		\
17159e2ff55SEnji Cooper	test_read_format_tbz.c			\
17259e2ff55SEnji Cooper	test_read_format_tgz.c			\
17359e2ff55SEnji Cooper	test_read_format_tlz.c			\
17459e2ff55SEnji Cooper	test_read_format_txz.c			\
17559e2ff55SEnji Cooper	test_read_format_tz.c			\
17659e2ff55SEnji Cooper	test_read_format_ustar_filename.c	\
177cdf63a70SMartin Matuska	test_read_format_warc.c			\
17859e2ff55SEnji Cooper	test_read_format_xar.c			\
17959e2ff55SEnji Cooper	test_read_format_zip.c			\
18059e2ff55SEnji Cooper	test_read_format_zip_comment_stored.c	\
181cdf63a70SMartin Matuska	test_read_format_zip_encryption_data.c	\
182cdf63a70SMartin Matuska	test_read_format_zip_encryption_header.c	\
183cdf63a70SMartin Matuska	test_read_format_zip_encryption_partially.c	\
18459e2ff55SEnji Cooper	test_read_format_zip_filename.c		\
185cfa49a9bSMartin Matuska	test_read_format_zip_high_compression.c	\
1867105995cSMartin Matuska	test_read_format_zip_jar.c		\
18759e2ff55SEnji Cooper	test_read_format_zip_mac_metadata.c	\
188cdf63a70SMartin Matuska	test_read_format_zip_malformed.c	\
189cdf63a70SMartin Matuska	test_read_format_zip_msdos.c		\
190cdf63a70SMartin Matuska	test_read_format_zip_nested.c		\
191cdf63a70SMartin Matuska	test_read_format_zip_nofiletype.c	\
192cdf63a70SMartin Matuska	test_read_format_zip_padded.c		\
19359e2ff55SEnji Cooper	test_read_format_zip_sfx.c		\
194cdf63a70SMartin Matuska	test_read_format_zip_traditional_encryption_data.c	\
195cdf63a70SMartin Matuska	test_read_format_zip_winzip_aes.c	\
196cdf63a70SMartin Matuska	test_read_format_zip_winzip_aes_large.c	\
197cdf63a70SMartin Matuska	test_read_format_zip_zip64.c		\
19859e2ff55SEnji Cooper	test_read_large.c			\
19959e2ff55SEnji Cooper	test_read_pax_truncated.c		\
20059e2ff55SEnji Cooper	test_read_position.c			\
20159e2ff55SEnji Cooper	test_read_set_format.c			\
202cdf63a70SMartin Matuska	test_read_too_many_filters.c		\
20359e2ff55SEnji Cooper	test_read_truncated.c			\
20459e2ff55SEnji Cooper	test_read_truncated_filter.c		\
20559e2ff55SEnji Cooper	test_sparse_basic.c			\
20659e2ff55SEnji Cooper	test_tar_filenames.c			\
20759e2ff55SEnji Cooper	test_tar_large.c			\
208cdf63a70SMartin Matuska	test_warn_missing_hardlink_target.c	\
20959e2ff55SEnji Cooper	test_ustar_filenames.c			\
21059e2ff55SEnji Cooper	test_ustar_filename_encoding.c		\
21159e2ff55SEnji Cooper	test_write_disk.c			\
21259e2ff55SEnji Cooper	test_write_disk_appledouble.c		\
21359e2ff55SEnji Cooper	test_write_disk_failures.c		\
21459e2ff55SEnji Cooper	test_write_disk_hardlink.c		\
21559e2ff55SEnji Cooper	test_write_disk_hfs_compression.c	\
21659e2ff55SEnji Cooper	test_write_disk_lookup.c		\
21759e2ff55SEnji Cooper	test_write_disk_mac_metadata.c		\
21859e2ff55SEnji Cooper	test_write_disk_no_hfs_compression.c	\
21959e2ff55SEnji Cooper	test_write_disk_perms.c			\
22059e2ff55SEnji Cooper	test_write_disk_secure.c		\
221cfa49a9bSMartin Matuska	test_write_disk_secure744.c		\
22224113d8cSMartin Matuska	test_write_disk_secure745.c		\
22324113d8cSMartin Matuska	test_write_disk_secure746.c		\
22459e2ff55SEnji Cooper	test_write_disk_sparse.c		\
22559e2ff55SEnji Cooper	test_write_disk_symlink.c		\
22659e2ff55SEnji Cooper	test_write_disk_times.c			\
22759e2ff55SEnji Cooper	test_write_filter_b64encode.c		\
22859e2ff55SEnji Cooper	test_write_filter_bzip2.c		\
22959e2ff55SEnji Cooper	test_write_filter_compress.c		\
23059e2ff55SEnji Cooper	test_write_filter_gzip.c		\
23159e2ff55SEnji Cooper	test_write_filter_gzip_timestamp.c	\
23259e2ff55SEnji Cooper	test_write_filter_lrzip.c		\
233cdf63a70SMartin Matuska	test_write_filter_lz4.c			\
23459e2ff55SEnji Cooper	test_write_filter_lzip.c		\
23559e2ff55SEnji Cooper	test_write_filter_lzma.c		\
23659e2ff55SEnji Cooper	test_write_filter_lzop.c		\
23759e2ff55SEnji Cooper	test_write_filter_program.c		\
23859e2ff55SEnji Cooper	test_write_filter_uuencode.c		\
23959e2ff55SEnji Cooper	test_write_filter_xz.c			\
24059e2ff55SEnji Cooper	test_write_format_7zip.c		\
24159e2ff55SEnji Cooper	test_write_format_7zip_empty.c		\
24259e2ff55SEnji Cooper	test_write_format_7zip_large.c		\
24359e2ff55SEnji Cooper	test_write_format_ar.c			\
24459e2ff55SEnji Cooper	test_write_format_cpio.c		\
24559e2ff55SEnji Cooper	test_write_format_cpio_empty.c		\
24659e2ff55SEnji Cooper	test_write_format_cpio_newc.c		\
24759e2ff55SEnji Cooper	test_write_format_cpio_odc.c		\
24859e2ff55SEnji Cooper	test_write_format_gnutar.c		\
249f061a221SMartin Matuska	test_write_format_gnutar_filenames.c	\
25059e2ff55SEnji Cooper	test_write_format_iso9660.c		\
25159e2ff55SEnji Cooper	test_write_format_iso9660_boot.c	\
25259e2ff55SEnji Cooper	test_write_format_iso9660_empty.c	\
25359e2ff55SEnji Cooper	test_write_format_iso9660_filename.c	\
25459e2ff55SEnji Cooper	test_write_format_iso9660_zisofs.c	\
25559e2ff55SEnji Cooper	test_write_format_mtree.c		\
25659e2ff55SEnji Cooper	test_write_format_mtree_absolute_path.c	\
25759e2ff55SEnji Cooper	test_write_format_mtree_classic.c	\
25859e2ff55SEnji Cooper	test_write_format_mtree_classic_indent.c	\
25959e2ff55SEnji Cooper	test_write_format_mtree_fflags.c	\
26059e2ff55SEnji Cooper	test_write_format_mtree_no_separator.c	\
26159e2ff55SEnji Cooper	test_write_format_mtree_quoted_filename.c	\
26259e2ff55SEnji Cooper	test_write_format_pax.c			\
263cdf63a70SMartin Matuska	test_write_format_raw.c			\
264cdf63a70SMartin Matuska	test_write_format_raw_b64.c		\
26559e2ff55SEnji Cooper	test_write_format_shar_empty.c		\
26659e2ff55SEnji Cooper	test_write_format_tar.c			\
26759e2ff55SEnji Cooper	test_write_format_tar_empty.c		\
26859e2ff55SEnji Cooper	test_write_format_tar_sparse.c		\
26959e2ff55SEnji Cooper	test_write_format_tar_ustar.c		\
27059e2ff55SEnji Cooper	test_write_format_tar_v7tar.c		\
271cdf63a70SMartin Matuska	test_write_format_warc.c		\
272cdf63a70SMartin Matuska	test_write_format_warc_empty.c		\
27359e2ff55SEnji Cooper	test_write_format_xar.c			\
27459e2ff55SEnji Cooper	test_write_format_xar_empty.c		\
27559e2ff55SEnji Cooper	test_write_format_zip.c			\
276cdf63a70SMartin Matuska	test_write_format_zip_compression_store.c	\
27759e2ff55SEnji Cooper	test_write_format_zip_empty.c		\
278cdf63a70SMartin Matuska	test_write_format_zip_empty_zip64.c	\
279cdf63a70SMartin Matuska	test_write_format_zip_file.c		\
280cdf63a70SMartin Matuska	test_write_format_zip_file_zip64.c	\
281cdf63a70SMartin Matuska	test_write_format_zip_large.c		\
282cdf63a70SMartin Matuska	test_write_format_zip_zip64.c		\
28359e2ff55SEnji Cooper	test_write_open_memory.c		\
284cdf63a70SMartin Matuska	test_write_read_format_zip.c		\
28559e2ff55SEnji Cooper	test_zip_filename_encoding.c
28659e2ff55SEnji Cooper
28759e2ff55SEnji Cooper# Deterministic failures:
28859e2ff55SEnji Cooper# Crashes with SIGBUS
28959e2ff55SEnji CooperBROKEN_TESTS+=			test_archive_rmd160
29059e2ff55SEnji Cooper# Fails with `libarchive/test/test_archive_crypto.c:121: md != actualmd`
29159e2ff55SEnji CooperBROKEN_TESTS+=			test_archive_sha384
29259e2ff55SEnji Cooper# Fails with `test_compat_pax_libarchive_2x.c:122: ARCHIVE_WARN != archive_read_next_header(a, &ae)`
29359e2ff55SEnji CooperBROKEN_TESTS+=			test_compat_pax_libarchive_2x
29459e2ff55SEnji Cooper# Fails with `test_read_disk_directory_traversals.c:1094: File at has atime 886622, 1443306049 seconds ago`
29559e2ff55SEnji CooperBROKEN_TESTS+=			test_read_disk_directory_traversals
29659e2ff55SEnji Cooper
29759e2ff55SEnji Cooper# Non-deterministic failures:
29859e2ff55SEnji Cooper# (Times out?) [and] crashes
29959e2ff55SEnji CooperBROKEN_TESTS+=			test_fuzz_rar
30059e2ff55SEnji Cooper
30159e2ff55SEnji Cooper# Build the test program.
30259e2ff55SEnji CooperSRCS.libarchive_test=		\
30359e2ff55SEnji Cooper	${TESTS_SRCS}		\
30459e2ff55SEnji Cooper	main.c			\
305277fbb92SBryan Drewery	read_open_memory.c	\
30659e2ff55SEnji Cooper	list.h
30759e2ff55SEnji Cooper
30859e2ff55SEnji CooperLIBADD.libarchive_test=	archive
30959e2ff55SEnji Cooper
3103c89d6b0SBryan Drewery.PATH: ${_LIBARCHIVEDIR}/test_utils
31159e2ff55SEnji CooperSRCS.libarchive_test+=	test_utils.c
31259e2ff55SEnji Cooper
31359e2ff55SEnji Cooper# list.h is just a list of all tests, as indicated by DEFINE_TEST macro lines
31459e2ff55SEnji Cooperlist.h: ${TESTS_SRCS} Makefile
3153c89d6b0SBryan Drewery	@(cd ${_LIBARCHIVEDIR}/libarchive/test && \
316cdf63a70SMartin Matuska	grep -E -h ^DEFINE_TEST ${.ALLSRC:N*Makefile} | \
31759e2ff55SEnji Cooper	    egrep -v '${BROKEN_TESTS:tW:C/ /|/g}') > ${.TARGET}.tmp
31859e2ff55SEnji Cooper	@mv ${.TARGET}.tmp ${.TARGET}
31959e2ff55SEnji Cooper
320430f7286SEnji CooperCLEANTESTS+=	list.h list.h.tmp
321430f7286SEnji Cooper${PACKAGE}FILES+=	README
322e9ed7ea4SMartin Matuska${PACKAGE}FILES+=	test_acl_pax_posix1e.tar.uu
323e9ed7ea4SMartin Matuska${PACKAGE}FILES+=	test_acl_pax_nfs4.tar.uu
324430f7286SEnji Cooper${PACKAGE}FILES+=	test_archive_string_conversion.txt.Z.uu
325430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_bzip2_1.tbz.uu
326430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_bzip2_2.tbz.uu
327430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_cpio_1.cpio.uu
328430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_gtar_1.tar.uu
329d5d08d29SMartin Matuska${PACKAGE}FILES+=	test_compat_gtar_2.tar.uu
330430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_gzip_1.tgz.uu
331430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_gzip_2.tgz.uu
332cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_1.tar.lz4.uu
333cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_2.tar.lz4.uu
334cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_3.tar.lz4.uu
335cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B4.tar.lz4.uu
336cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B4BD.tar.lz4.uu
337cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B4BDBX.tar.lz4.uu
338cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B5.tar.lz4.uu
339cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B5BD.tar.lz4.uu
340cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B6.tar.lz4.uu
341cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B6BD.tar.lz4.uu
342cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B7.tar.lz4.uu
343cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_lz4_B7BD.tar.lz4.uu
344430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzip_1.tlz.uu
345430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzip_2.tlz.uu
346430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzma_1.tlz.uu
347430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzma_2.tlz.uu
348430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzma_3.tlz.uu
349430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzop_1.tar.lzo.uu
350430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzop_2.tar.lzo.uu
351430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_lzop_3.tar.lzo.uu
352430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_mac-1.tar.Z.uu
353430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_mac-2.tar.Z.uu
354430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_pax_libarchive_2x.tar.Z.uu
355007dbc1fSMartin Matuska${PACKAGE}FILES+=	test_compat_perl_archive_tar.tar.uu
356a2e802b7SMartin Matuska${PACKAGE}FILES+=	test_compat_plexus_archiver_tar.tar.uu
357430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_solaris_pax_sparse_1.pax.Z.uu
358430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_solaris_pax_sparse_2.pax.Z.uu
359430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_solaris_tar_acl.tar.uu
360e9ed7ea4SMartin Matuska${PACKAGE}FILES+=	test_compat_star_acl_nfs4.tar.uu
361d5d08d29SMartin Matuska${PACKAGE}FILES+=	test_compat_star_acl_posix1e.tar.uu
362430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_tar_hardlink_1.tar.uu
363cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_compat_uudecode_large.tar.Z.uu
364430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_xz_1.txz.uu
365430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_1.zip.uu
366430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_2.zip.uu
367430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_3.zip.uu
368430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_4.zip.uu
369430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_5.zip.uu
370430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_6.zip.uu
371430f7286SEnji Cooper${PACKAGE}FILES+=	test_compat_zip_7.xps.uu
372430f7286SEnji Cooper${PACKAGE}FILES+=	test_fuzz.cab.uu
373430f7286SEnji Cooper${PACKAGE}FILES+=	test_fuzz.lzh.uu
374430f7286SEnji Cooper${PACKAGE}FILES+=	test_fuzz_1.iso.Z.uu
375430f7286SEnji Cooper${PACKAGE}FILES+=	test_pax_filename_encoding.tar.uu
376430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_multiple_files.part1.rar.uu
377430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_multiple_files.part2.rar.uu
378430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_multiple_files.part3.rar.uu
379430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_multiple_files.part4.rar.uu
380430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_multiple_files.part5.rar.uu
381430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_multiple_files.part6.rar.uu
382430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_single_file.part1.rar.uu
383430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_single_file.part2.rar.uu
384430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_single_file.part3.rar.uu
385430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part01.rar.uu
386430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part02.rar.uu
387430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part03.rar.uu
388430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part04.rar.uu
389430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part05.rar.uu
390430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part06.rar.uu
391430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part07.rar.uu
392430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part08.rar.uu
393430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part09.rar.uu
394430f7286SEnji Cooper${PACKAGE}FILES+=	test_rar_multivolume_uncompressed_files.part10.rar.uu
395430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_filter_grzip.tar.grz.uu
396430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_filter_lrzip.tar.lrz.uu
397430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_filter_lzop.tar.lzo.uu
398430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_filter_lzop_multiple_parts.tar.lzo.uu
399430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_bzip2.7z.uu
400430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_copy_1.7z.uu
401430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_copy_2.7z.uu
402430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_copy_lzma.7z.uu
403430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_deflate.7z.uu
404430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_lzma1_1.7z.uu
405430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_lzma1_2.7z.uu
406430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_lzma2_1.7z.uu
407430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj2_lzma2_2.7z.uu
408430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj_bzip2.7z.uu
409430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj_copy.7z.uu
410430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj_deflate.7z.uu
411430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj_lzma1.7z.uu
412430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bcj_lzma2.7z.uu
413430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_bzip2.7z.uu
414430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_copy.7z.uu
415430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_copy_2.7z.uu
416430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_deflate.7z.uu
417430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_delta_lzma1.7z.uu
418430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_delta_lzma2.7z.uu
419430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_empty_archive.7z.uu
420430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_empty_file.7z.uu
421cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_7zip_encryption.7z.uu
422cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_7zip_encryption_header.7z.uu
423cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_7zip_encryption_partially.7z.uu
424430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_lzma1.7z.uu
425430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_lzma1_2.7z.uu
426430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_lzma1_lzma2.7z.uu
427430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_lzma2.7z.uu
428cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_7zip_malformed.7z.uu
429cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_7zip_malformed2.7z.uu
430430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_ppmd.7z.uu
431430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_7zip_symbolic_name.7z.uu
432430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_ar.ar.uu
433430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cab_1.cab.uu
434430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cab_2.cab.uu
435430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cab_3.cab.uu
436430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cab_filename_cp932.cab.uu
437430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_bin_be.cpio.uu
438cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_cpio_bin_le.cpio.uu
439430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_filename_cp866.cpio.uu
440430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_filename_eucjp.cpio.uu
441430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_filename_koi8r.cpio.uu
442430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_filename_utf8_jp.cpio.uu
443430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_filename_utf8_ru.cpio.uu
444430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_svr4_bzip2_rpm.rpm.uu
445430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_cpio_svr4_gzip_rpm.rpm.uu
446430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_filename_cp866.tar.Z.uu
447430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_filename_eucjp.tar.Z.uu
448430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_filename_koi8r.tar.Z.uu
449430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_1_13.tar.uu
450430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_1_17.tar.uu
451430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_1_17_posix00.tar.uu
452430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_1_17_posix01.tar.uu
453430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_1_17_posix10.tar.uu
454430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu
455430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_gtar_sparse_skip_entry.tar.Z.uu
456430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso.iso.Z.uu
457430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_2.iso.Z.uu
458430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_joliet.iso.Z.uu
459430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_joliet_by_nero.iso.Z.uu
460430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_joliet_long.iso.Z.uu
461430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_joliet_rockridge.iso.Z.uu
462430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_multi_extent.iso.Z.uu
463430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_rockridge.iso.Z.uu
464430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_rockridge_ce.iso.Z.uu
465430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_rockridge_new.iso.Z.uu
466430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_rockridge_rr_moved.iso.Z.uu
467430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_xorriso.iso.Z.uu
468430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_iso_zisofs.iso.Z.uu
469cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_lha_bugfix_0.lzh.uu
470430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_filename_cp932.lzh.uu
471430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_header0.lzh.uu
472430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_header1.lzh.uu
473430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_header2.lzh.uu
474430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_header3.lzh.uu
475430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_lh0.lzh.uu
476430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_lh6.lzh.uu
477430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_lh7.lzh.uu
478430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_lha_withjunk.lzh.uu
479430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_mtree.mtree.uu
480f3e9b21aSMartin Matuska${PACKAGE}FILES+=	test_read_format_mtree_crash747.mtree.bz2.uu
481430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_mtree_nomagic.mtree.uu
482430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_mtree_nomagic2.mtree.uu
483430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_mtree_nomagic3.mtree.uu
484430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar.rar.uu
485430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_binary_data.rar.uu
486430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_compress_best.rar.uu
487430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_compress_normal.rar.uu
488cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_rar_encryption_data.rar.uu
489cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_rar_encryption_header.rar.uu
490cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_rar_encryption_partially.rar.uu
491f061a221SMartin Matuska${PACKAGE}FILES+=	test_read_format_rar_invalid1.rar.uu
492430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_multi_lzss_blocks.rar.uu
493430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_multivolume.part0001.rar.uu
494430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_multivolume.part0002.rar.uu
495430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_multivolume.part0003.rar.uu
496430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_multivolume.part0004.rar.uu
497430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_noeof.rar.uu
498430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_ppmd_lzss_conversion.rar.uu
499430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_sfx.exe.uu
500430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_subblock.rar.uu
501430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_unicode.rar.uu
502430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_rar_windows.rar.uu
503d5d08d29SMartin Matuska${PACKAGE}FILES+=	test_read_format_raw.bufr.uu
504430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_raw.data.Z.uu
505430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_raw.data.uu
506cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_tar_concatenated.tar.uu
507430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_tar_empty_filename.tar.uu
508cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_tar_empty_pax.tar.Z.uu
509430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_tar_filename_koi8r.tar.Z.uu
510430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_ustar_filename_cp866.tar.Z.uu
511430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_ustar_filename_eucjp.tar.Z.uu
512430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_ustar_filename_koi8r.tar.Z.uu
513cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_warc.warc.uu
514430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip.zip.uu
515430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_comment_stored_1.zip.uu
516430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_comment_stored_2.zip.uu
517cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_encryption_data.zip.uu
518cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_encryption_header.zip.uu
519cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_encryption_partially.zip.uu
520430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_filename_cp866.zip.uu
521430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_filename_cp932.zip.uu
522430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_filename_koi8r.zip.uu
523430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_filename_utf8_jp.zip.uu
524430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_filename_utf8_ru.zip.uu
525430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_filename_utf8_ru2.zip.uu
526cfa49a9bSMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_high_compression.zip.uu
5277105995cSMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_jar.jar.uu
528430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_length_at_end.zip.uu
529430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_mac_metadata.zip.uu
530cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_malformed1.zip.uu
531cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_msdos.zip.uu
532cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_nested.zip.uu
533cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_nofiletype.zip.uu
534cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_padded1.zip.uu
535cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_padded2.zip.uu
536cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_padded3.zip.uu
537430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_sfx.uu
538430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_symlink.zip.uu
539cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_traditional_encryption_data.zip.uu
540430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_format_zip_ux.zip.uu
541cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_winzip_aes128.zip.uu
542cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_winzip_aes256.zip.uu
543cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_winzip_aes256_large.zip.uu
544cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_winzip_aes256_stored.zip.uu
545cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_zip64a.zip.uu
546cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_format_zip_zip64b.zip.uu
547430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_large_splitted_rar_aa.uu
548430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_large_splitted_rar_ab.uu
549430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_large_splitted_rar_ac.uu
550430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_large_splitted_rar_ad.uu
551430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_large_splitted_rar_ae.uu
552430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_splitted_rar_aa.uu
553430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_splitted_rar_ab.uu
554430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_splitted_rar_ac.uu
555430f7286SEnji Cooper${PACKAGE}FILES+=	test_read_splitted_rar_ad.uu
556cdf63a70SMartin Matuska${PACKAGE}FILES+=	test_read_too_many_filters.gz.uu
557430f7286SEnji Cooper${PACKAGE}FILES+=	test_splitted_rar_seek_support_aa.uu
558430f7286SEnji Cooper${PACKAGE}FILES+=	test_splitted_rar_seek_support_ab.uu
559430f7286SEnji Cooper${PACKAGE}FILES+=	test_splitted_rar_seek_support_ac.uu
560430f7286SEnji Cooper${PACKAGE}FILES+=	test_write_disk_appledouble.cpio.gz.uu
561430f7286SEnji Cooper${PACKAGE}FILES+=	test_write_disk_hfs_compression.tgz.uu
562430f7286SEnji Cooper${PACKAGE}FILES+=	test_write_disk_mac_metadata.tar.gz.uu
563430f7286SEnji Cooper${PACKAGE}FILES+=	test_write_disk_no_hfs_compression.tgz.uu
56459e2ff55SEnji Cooper
56559e2ff55SEnji Cooper.include <bsd.test.mk>
566