[Midnightbsd-cvs] src [11288] trunk/usr.bin/tar/tests: add tests
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Wed Jul 4 09:33:07 EDT 2018
Revision: 11288
http://svnweb.midnightbsd.org/src/?rev=11288
Author: laffer1
Date: 2018-07-04 09:33:07 -0400 (Wed, 04 Jul 2018)
Log Message:
-----------
add tests
Added Paths:
-----------
trunk/usr.bin/tar/tests/
trunk/usr.bin/tar/tests/Makefile
trunk/usr.bin/tar/tests/functional_test.sh
Added: trunk/usr.bin/tar/tests/Makefile
===================================================================
--- trunk/usr.bin/tar/tests/Makefile (rev 0)
+++ trunk/usr.bin/tar/tests/Makefile 2018-07-04 13:33:07 UTC (rev 11288)
@@ -0,0 +1,126 @@
+# $MidnightBSD$
+# $FreeBSD: stable/10/usr.bin/tar/tests/Makefile 324418 2017-10-08 20:55:45Z mm $
+
+SRCTOP= ${.CURDIR:H:H:H}
+TESTSDIR= ${TESTSBASE}/usr.bin/tar
+
+LIBARCHIVEDIR= ${SRCTOP}/contrib/libarchive
+
+ATF_TESTS_SH+= functional_test
+
+BINDIR= ${TESTSDIR}
+
+CFLAGS+= -DPLATFORM_CONFIG_H=\"${SRCTOP}/lib/libarchive/config_freebsd.h\"
+CFLAGS+= -I${SRCTOP}/lib/libarchive -I${.OBJDIR}
+CFLAGS+= -I${LIBARCHIVEDIR}/tar -I${LIBARCHIVEDIR}/tar/test
+CFLAGS+= -I${LIBARCHIVEDIR}/libarchive
+CFLAGS+= -I${LIBARCHIVEDIR}/test_utils
+
+# Uncomment to link against dmalloc
+#LDADD+= -L/usr/local/lib -ldmalloc
+#CFLAGS+= -I/usr/local/include -DUSE_DMALLOC
+
+PROGS+= bsdtar_test
+
+.PATH: ${LIBARCHIVEDIR}/tar/test
+TESTS_SRCS= \
+ test_0.c \
+ test_basic.c \
+ test_copy.c \
+ test_empty_mtree.c \
+ test_extract_tar_bz2.c \
+ test_extract_tar_grz.c \
+ test_extract_tar_gz.c \
+ test_extract_tar_lrz.c \
+ test_extract_tar_lz.c \
+ test_extract_tar_lz4.c \
+ test_extract_tar_lzma.c \
+ test_extract_tar_lzo.c \
+ test_extract_tar_xz.c \
+ test_extract_tar_zstd.c \
+ test_format_newc.c \
+ test_help.c \
+ test_leading_slash.c \
+ test_missing_file.c \
+ test_option_C_upper.c \
+ test_option_H_upper.c \
+ test_option_L_upper.c \
+ test_option_O_upper.c \
+ test_option_T_upper.c \
+ test_option_U_upper.c \
+ test_option_X_upper.c \
+ test_option_a.c \
+ test_option_acls.c \
+ test_option_b.c \
+ test_option_b64encode.c \
+ test_option_exclude.c \
+ test_option_fflags.c \
+ test_option_gid_gname.c \
+ test_option_grzip.c \
+ test_option_j.c \
+ test_option_k.c \
+ test_option_keep_newer_files.c \
+ test_option_lrzip.c \
+ test_option_lz4.c \
+ test_option_lzma.c \
+ test_option_lzop.c \
+ test_option_n.c \
+ test_option_newer_than.c \
+ test_option_nodump.c \
+ test_option_older_than.c \
+ test_option_passphrase.c \
+ test_option_q.c \
+ test_option_r.c \
+ test_option_s.c \
+ test_option_uid_uname.c \
+ test_option_uuencode.c \
+ test_option_xattrs.c \
+ test_option_xz.c \
+ test_option_z.c \
+ test_option_zstd.c \
+ test_patterns.c \
+ test_print_longpath.c \
+ test_stdio.c \
+ test_strip_components.c \
+ test_symlink_dir.c \
+ test_version.c
+
+SRCS.bsdtar_test= \
+ ${TESTS_SRCS} \
+ list.h
+
+.PATH: ${LIBARCHIVEDIR}/test_utils
+SRCS.bsdtar_test+= test_main.c \
+ test_utils.c
+
+DPADD.bsdtar_test= ${LIBARCHIVE}
+LDADD.bsdtar_test= -larchive
+
+list.h: ${TESTS_SRCS} Makefile
+ @(cd ${LIBARCHIVEDIR}/tar/test && \
+ grep -h DEFINE_TEST ${.ALLSRC:N*Makefile}) > ${.TARGET}.tmp
+ @mv ${.TARGET}.tmp ${.TARGET}
+
+CLEANFILES+= list.h list.h.tmp
+
+FILES+= test_extract.tar.Z.uu
+FILES+= test_extract.tar.bz2.uu
+FILES+= test_extract.tar.grz.uu
+FILES+= test_extract.tar.gz.uu
+FILES+= test_extract.tar.lrz.uu
+FILES+= test_extract.tar.lz.uu
+FILES+= test_extract.tar.lz4.uu
+FILES+= test_extract.tar.lzma.uu
+FILES+= test_extract.tar.lzo.uu
+FILES+= test_extract.tar.xz.uu
+FILES+= test_extract.tar.zst.uu
+FILES+= test_leading_slash.tar.uu
+FILES+= test_option_keep_newer_files.tar.Z.uu
+FILES+= test_option_passphrase.zip.uu
+FILES+= test_option_s.tar.Z.uu
+FILES+= test_patterns_2.tar.uu
+FILES+= test_patterns_3.tar.uu
+FILES+= test_patterns_4.tar.uu
+FILES+= test_print_longpath.tar.Z.uu
+
+.include <bsd.test.mk>
Property changes on: trunk/usr.bin/tar/tests/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/usr.bin/tar/tests/functional_test.sh
===================================================================
--- trunk/usr.bin/tar/tests/functional_test.sh (rev 0)
+++ trunk/usr.bin/tar/tests/functional_test.sh 2018-07-04 13:33:07 UTC (rev 11288)
@@ -0,0 +1,52 @@
+#
+# Copyright 2015 EMC Corp.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# * Redistributions in binary form must reproduce the above copyright
+# notice, this list of conditions and the following disclaimer in the
+# documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+#
+# $FreeBSD: stable/10/usr.bin/tar/tests/functional_test.sh 288977 2015-10-07 06:08:55Z ngie $
+# $MidnightBSD$
+
+export BSDTAR=$(which tar)
+SRCDIR=$(atf_get_srcdir)
+TESTER="${SRCDIR}/bsdtar_test"
+
+check()
+{
+ local testcase=${1}; shift
+
+ atf_check -o ignore -s exit:0 ${TESTER} -d -r "${SRCDIR}" -v "${testcase}"
+}
+
+atf_init_test_cases()
+{
+ # Redirect stderr to stdout for the usage message because if you don't
+ # kyua list/kyua test will break:
+ # https://github.com/jmmv/kyua/issues/149
+ testcases=$(${TESTER} -h 2>&1 | awk 'p != 0 && $1 ~ /^[0-9]+:/ { print $NF } /Available tests:/ { p=1 }')
+ for testcase in ${testcases}; do
+ atf_test_case ${testcase}
+ eval "${testcase}_body() { check ${testcase}; }"
+ atf_add_test_case ${testcase}
+ done
+}
Property changes on: trunk/usr.bin/tar/tests/functional_test.sh
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list