diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2020-12-09 05:12:04 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2020-12-09 05:12:04 +0000 |
commit | 281412ce7bfaf058ae9ea0edf20e13a52f5b37dc (patch) | |
tree | bdec74a86afed34f251ef95e490a698a9d8bfd00 /usr.bin/grep/tests | |
parent | c2679dd779bb75f51682cde5eb55a291b72d7900 (diff) | |
download | src-281412ce7bfaf058ae9ea0edf20e13a52f5b37dc.tar.gz src-281412ce7bfaf058ae9ea0edf20e13a52f5b37dc.zip |
grep: tests: stop expecting a failure of gnuext w/ bsdgrep
libregex now supports these and we no longer offer to not link against
libregex.
Notes
Notes:
svn path=/head/; revision=368482
Diffstat (limited to 'usr.bin/grep/tests')
-rwxr-xr-x | usr.bin/grep/tests/grep_freebsd_test.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/grep/tests/grep_freebsd_test.sh b/usr.bin/grep/tests/grep_freebsd_test.sh index 6d5566a43a03..52455cd1d653 100755 --- a/usr.bin/grep/tests/grep_freebsd_test.sh +++ b/usr.bin/grep/tests/grep_freebsd_test.sh @@ -87,9 +87,7 @@ gnuext_body() { grep_type _type=$? - if [ $_type -eq $GREP_TYPE_BSD ]; then - atf_expect_fail "this test requires GNU extensions in regex(3)" - elif [ $_type -eq $GREP_TYPE_GNU_FREEBSD ]; then + if [ $_type -eq $GREP_TYPE_GNU_FREEBSD ]; then atf_expect_fail "\\s and \\S are known to be buggy in base gnugrep" fi |