diff options
author | ngie <ngie@FreeBSD.org> | 2015-10-26 03:15:06 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-10-26 03:15:06 +0000 |
commit | 471d0645dcfeaccbf8ae1d603286e10691d89165 (patch) | |
tree | 6657ae4deaca1ce729244314e916cb9d99ce03a7 | |
parent | 6be0ee955fc72a516ce3e03fc91450e0ddf7bfec (diff) | |
download | FreeBSD-src-471d0645dcfeaccbf8ae1d603286e10691d89165.zip FreeBSD-src-471d0645dcfeaccbf8ae1d603286e10691d89165.tar.gz |
MFC r282339,r282341:
r282339 (by bapt):
Add regression test about reverse line feed to col(1)
r282341 (by bapt):
Actually push the right tests
-rw-r--r-- | etc/mtree/BSD.tests.dist | 2 | ||||
-rw-r--r-- | usr.bin/col/Makefile | 6 | ||||
-rw-r--r-- | usr.bin/col/tests/Makefile | 11 | ||||
-rwxr-xr-x | usr.bin/col/tests/col.sh | 33 | ||||
-rw-r--r-- | usr.bin/col/tests/rlf.in | 2 | ||||
-rw-r--r-- | usr.bin/col/tests/rlf2.in | 2 |
6 files changed, 56 insertions, 0 deletions
diff --git a/etc/mtree/BSD.tests.dist b/etc/mtree/BSD.tests.dist index 63fa2a5..57fcb61 100644 --- a/etc/mtree/BSD.tests.dist +++ b/etc/mtree/BSD.tests.dist @@ -340,6 +340,8 @@ .. cmp .. + col + .. comm .. cut diff --git a/usr.bin/col/Makefile b/usr.bin/col/Makefile index 8e3a959..d5c63e1 100644 --- a/usr.bin/col/Makefile +++ b/usr.bin/col/Makefile @@ -1,6 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ +.include <bsd.own.mk> + PROG= col +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif + .include <bsd.prog.mk> diff --git a/usr.bin/col/tests/Makefile b/usr.bin/col/tests/Makefile new file mode 100644 index 0000000..43838e9 --- /dev/null +++ b/usr.bin/col/tests/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +TESTSDIR= ${TESTSBASE}/usr.bin/col + +ATF_TESTS_SH= col + +FILES= rlf.in \ + rlf2.in +FILESDIR= ${TESTSDIR} + +.include <bsd.test.mk> diff --git a/usr.bin/col/tests/col.sh b/usr.bin/col/tests/col.sh new file mode 100755 index 0000000..c072aab --- /dev/null +++ b/usr.bin/col/tests/col.sh @@ -0,0 +1,33 @@ +# $FreeBSD$ + +atf_test_case rlf + +rlf_head() +{ + atf_set "descr" "testing reverse line feed" +} +rlf_body() +{ + atf_check \ + -o inline:"a b\n" \ + -e empty \ + -s exit:0 \ + col < $(atf_get_srcdir)/rlf.in + + atf_check \ + -o inline:"a b\n" \ + -e empty \ + -s exit:0 \ + col < $(atf_get_srcdir)/rlf2.in + + atf_check \ + -o inline:"a b\n" \ + -e empty \ + -s exit:0 \ + col -x < $(atf_get_srcdir)/rlf2.in +} + +atf_init_test_cases() +{ + atf_add_test_case rlf +} diff --git a/usr.bin/col/tests/rlf.in b/usr.bin/col/tests/rlf.in new file mode 100644 index 0000000..57a14e5 --- /dev/null +++ b/usr.bin/col/tests/rlf.in @@ -0,0 +1,2 @@ +a + 7b diff --git a/usr.bin/col/tests/rlf2.in b/usr.bin/col/tests/rlf2.in new file mode 100644 index 0000000..dd46851 --- /dev/null +++ b/usr.bin/col/tests/rlf2.in @@ -0,0 +1,2 @@ +a + 7b |