xref: /freebsd/usr.bin/tar/tests/Makefile (revision 2e113ef82465598b8c26e0ca415fbe90677fbd47)
1PACKAGE=	tests
2
3WARNS?=		3
4
5_LIBARCHIVEDIR=	${SRCTOP}/contrib/libarchive
6
7ATF_TESTS_SH+=	functional_test
8
9BINDIR=		${TESTSDIR}
10
11CFLAGS+=	-DPLATFORM_CONFIG_H=\"${SRCTOP}/lib/libarchive/config_freebsd.h\"
12CFLAGS+=	-I${SRCTOP}/lib/libarchive -I${.OBJDIR}
13CFLAGS+=	-I${_LIBARCHIVEDIR}/libarchive
14CFLAGS+=	-I${_LIBARCHIVEDIR}/tar -I${_LIBARCHIVEDIR}/tar/test
15CFLAGS+=	-I${_LIBARCHIVEDIR}/test_utils
16
17CFLAGS.test_utils.c+=	-Wno-cast-align
18
19# Uncomment to link against dmalloc
20#LDADD+= -L/usr/local/lib -ldmalloc
21#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC
22
23PROGS+=		bsdtar_test
24
25.PATH: ${_LIBARCHIVEDIR}/tar/test
26TESTS_SRCS=	\
27	test_0.c				\
28	test_basic.c				\
29	test_copy.c				\
30	test_empty_mtree.c			\
31	test_extract_tar_bz2.c			\
32	test_extract_tar_grz.c			\
33	test_extract_tar_gz.c			\
34	test_extract_tar_lrz.c			\
35	test_extract_tar_lz.c			\
36	test_extract_tar_lz4.c			\
37	test_extract_tar_lzma.c			\
38	test_extract_tar_lzo.c			\
39	test_extract_tar_xz.c			\
40	test_extract_tar_zstd.c			\
41	test_format_newc.c			\
42	test_help.c				\
43	test_leading_slash.c			\
44	test_list_item.c			\
45	test_missing_file.c			\
46	test_option_C_mtree.c			\
47	test_option_C_upper.c			\
48	test_option_H_upper.c			\
49	test_option_L_upper.c			\
50	test_option_O_upper.c			\
51	test_option_P_upper.c			\
52	test_option_T_upper.c			\
53	test_option_U_upper.c			\
54	test_option_X_upper.c			\
55	test_option_a.c				\
56	test_option_acls.c			\
57	test_option_b.c				\
58	test_option_b64encode.c			\
59	test_option_exclude.c			\
60	test_option_exclude_vcs.c		\
61	test_option_fflags.c			\
62	test_option_gid_gname.c			\
63	test_option_grzip.c			\
64	test_option_ignore_zeros.c		\
65	test_option_j.c				\
66	test_option_k.c				\
67	test_option_keep_newer_files.c		\
68	test_option_lrzip.c			\
69	test_option_lz4.c			\
70	test_option_lzma.c			\
71	test_option_lzop.c			\
72	test_option_mtime.c			\
73	test_option_n.c				\
74	test_option_newer_than.c		\
75	test_option_nodump.c			\
76	test_option_older_than.c		\
77	test_option_passphrase.c		\
78	test_option_q.c				\
79	test_option_r.c				\
80	test_option_s.c				\
81	test_option_safe_writes.c		\
82	test_option_uid_uname.c			\
83	test_option_uuencode.c			\
84	test_option_xattrs.c			\
85	test_option_xz.c			\
86	test_option_z.c				\
87	test_option_zstd.c			\
88	test_patterns.c				\
89	test_print_longpath.c			\
90	test_stdio.c				\
91	test_strip_components.c			\
92	test_symlink_dir.c			\
93	test_version.c
94
95SRCS.bsdtar_test=	\
96	${TESTS_SRCS}	\
97	list.h
98
99.PATH: ${_LIBARCHIVEDIR}/test_utils
100SRCS.bsdtar_test+=	test_main.c		\
101			test_utils.c
102
103LIBADD.bsdtar_test=	archive
104
105list.h: ${TESTS_SRCS} Makefile
106	@(cd ${_LIBARCHIVEDIR}/tar/test && \
107	grep -h DEFINE_TEST ${.ALLSRC:N*Makefile}) > ${.TARGET}.tmp
108	@mv ${.TARGET}.tmp ${.TARGET}
109
110CLEANFILES+=	list.h list.h.tmp
111
112${PACKAGE}FILES+=	test_extract.tar.Z.uu
113${PACKAGE}FILES+=	test_extract.tar.bz2.uu
114${PACKAGE}FILES+=	test_extract.tar.grz.uu
115${PACKAGE}FILES+=	test_extract.tar.gz.uu
116${PACKAGE}FILES+=	test_extract.tar.lrz.uu
117${PACKAGE}FILES+=	test_extract.tar.lz.uu
118${PACKAGE}FILES+=	test_extract.tar.lz4.uu
119${PACKAGE}FILES+=	test_extract.tar.lzma.uu
120${PACKAGE}FILES+=	test_extract.tar.lzo.uu
121${PACKAGE}FILES+=	test_extract.tar.xz.uu
122${PACKAGE}FILES+=	test_extract.tar.zst.uu
123${PACKAGE}FILES+=	test_leading_slash.tar.uu
124${PACKAGE}FILES+=	test_list_item.tar.uu
125${PACKAGE}FILES+=	test_option_keep_newer_files.tar.Z.uu
126${PACKAGE}FILES+=	test_option_passphrase.zip.uu
127${PACKAGE}FILES+=	test_option_s.tar.Z.uu
128${PACKAGE}FILES+=	test_patterns_2.tar.uu
129${PACKAGE}FILES+=	test_patterns_3.tar.uu
130${PACKAGE}FILES+=	test_patterns_4.tar.uu
131${PACKAGE}FILES+=	test_print_longpath.tar.Z.uu
132
133.include <bsd.test.mk>
134