svn commit: r317297 - head/contrib/netbsd-tests/usr.bin/grep

Ngie Cooper ngie at FreeBSD.org
Sat Apr 22 21:26:16 UTC 2017


Author: ngie
Date: Sat Apr 22 21:26:15 2017
New Revision: 317297
URL: https://svnweb.freebsd.org/changeset/base/317297

Log:
  Remove the expected failures for :context and :context2 with bsdgrep(1)
  
  They're no longer needed after recent fixes made to bsdgrep(1).
  
  Submitted by:	Kyle Evans <kevans91 at ksu.edu> (via a previous diff in D10433)
  Sponsored by:	Dell EMC Isilon

Modified:
  head/contrib/netbsd-tests/usr.bin/grep/t_grep.sh

Modified: head/contrib/netbsd-tests/usr.bin/grep/t_grep.sh
==============================================================================
--- head/contrib/netbsd-tests/usr.bin/grep/t_grep.sh	Sat Apr 22 20:55:39 2017	(r317296)
+++ head/contrib/netbsd-tests/usr.bin/grep/t_grep.sh	Sat Apr 22 21:26:15 2017	(r317297)
@@ -159,12 +159,6 @@ context_head()
 }
 context_body()
 {
-	# Begin FreeBSD
-	grep_type
-	if [ $? -eq $GREP_TYPE_BSD ]; then
-		atf_expect_fail "this test doesn't pass with BSD grep yet"
-	fi
-	# End FreeBSD
 	cp $(atf_get_srcdir)/d_context_*.* .
 
 	atf_check -o file:d_context_a.out grep -C2 bamboo d_context_a.in
@@ -226,12 +220,6 @@ context2_head()
 }
 context2_body()
 {
-	# Begin FreeBSD
-	grep_type
-	if [ $? -eq $GREP_TYPE_BSD ]; then
-		atf_expect_fail "this test doesn't pass with BSD grep yet"
-	fi
-	# End FreeBSD
 	printf "haddock\000cod\000plaice\000" > test1
 	printf "mackeral\000cod\000crab\000" > test2
 


More information about the svn-src-all mailing list