svn commit: r368482 - head/usr.bin/grep/tests

Kyle Evans kevans at FreeBSD.org
Wed Dec 9 05:12:04 UTC 2020


Author: kevans
Date: Wed Dec  9 05:12:04 2020
New Revision: 368482
URL: https://svnweb.freebsd.org/changeset/base/368482

Log:
  grep: tests: stop expecting a failure of gnuext w/ bsdgrep
  
  libregex now supports these and we no longer offer to not link against
  libregex.

Modified:
  head/usr.bin/grep/tests/grep_freebsd_test.sh

Modified: head/usr.bin/grep/tests/grep_freebsd_test.sh
==============================================================================
--- head/usr.bin/grep/tests/grep_freebsd_test.sh	Wed Dec  9 03:24:09 2020	(r368481)
+++ head/usr.bin/grep/tests/grep_freebsd_test.sh	Wed Dec  9 05:12:04 2020	(r368482)
@@ -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
 


More information about the svn-src-all mailing list