Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Dec 2020 05:12:04 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r368482 - head/usr.bin/grep/tests
Message-ID:  <202012090512.0B95C4tR019019@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012090512.0B95C4tR019019>