netbsd-tests: grep(1): Add test for -c flag

Someone might be inclined to accidentally break this. someone might have
written said test because they broke it locally.
This commit is contained in:
Kyle Evans 2018-06-07 18:06:01 +00:00
parent 943defc3a0
commit ce024bdc0c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334803

View File

@ -716,6 +716,22 @@ fgrep_oflag_body()
atf_check -s exit:1 grep -Fo "ghix" test1
atf_check -s exit:1 grep -Fo "abcdefghiklmnopqrstuvwxyz" test1
}
atf_test_case cflag
cflag_head()
{
atf_set "descr" "Check proper handling of -c"
}
cflag_body()
{
printf "a\nb\nc\n" > test1
atf_check -o inline:"1\n" grep -Ec "a" test1
atf_check -o inline:"2\n" grep -Ec "a|b" test1
atf_check -o inline:"3\n" grep -Ec "a|b|c" test1
atf_check -o inline:"test1:2\n" grep -EHc "a|b" test1
}
# End FreeBSD
atf_init_test_cases()
@ -759,5 +775,6 @@ atf_init_test_cases()
atf_add_test_case fgrep_multipattern
atf_add_test_case fgrep_icase
atf_add_test_case fgrep_oflag
atf_add_test_case cflag
# End FreeBSD
}