mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Integrate usr.bin/cut/tests from NetBSD into atf/kyua
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
6186fd1857
commit
48e0fbc3f9
3 changed files with 29 additions and 0 deletions
|
|
@ -251,6 +251,8 @@
|
|||
..
|
||||
comm
|
||||
..
|
||||
cut
|
||||
..
|
||||
dirname
|
||||
..
|
||||
file2c
|
||||
|
|
|
|||
|
|
@ -1,6 +1,12 @@
|
|||
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
||||
# $FreeBSD$
|
||||
|
||||
.include <src.opts.mk>
|
||||
|
||||
PROG= cut
|
||||
|
||||
.if ${MK_TESTS} != "no"
|
||||
SUBDIR+= tests
|
||||
.endif
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
|||
21
usr.bin/cut/tests/Makefile
Normal file
21
usr.bin/cut/tests/Makefile
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# $FreeBSD$
|
||||
|
||||
TESTSRC= ${.CURDIR}/../../../contrib/netbsd-tests/usr.bin/cut
|
||||
.PATH: ${TESTSRC}
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
TESTSDIR= ${TESTSBASE}/usr.bin/cut
|
||||
ATF_TESTS_SH= cut_test
|
||||
ATF_TESTS_SH_SRC_cut_test= t_cut.sh
|
||||
|
||||
FILESDIR= ${TESTSDIR}
|
||||
FILES= d_basic.out
|
||||
FILES+= d_cut.in
|
||||
FILES+= d_dflag.out
|
||||
FILES+= d_dsflag.out
|
||||
FILES+= d_latin1.in
|
||||
FILES+= d_sflag.out
|
||||
FILES+= d_utf8.in
|
||||
|
||||
.include <bsd.test.mk>
|
||||
Loading…
Reference in a new issue