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

Ed Maste emaste at FreeBSD.org
Tue May 2 18:37:12 UTC 2017


Author: emaste
Date: Tue May  2 18:37:11 2017
New Revision: 317694
URL: https://svnweb.freebsd.org/changeset/base/317694

Log:
  bsdgrep: revise test case which will soon become a failure
  
  Work in progress (D10315) is going to make egrep_empty_invalid an
  actually invalid regex, to be consistent with the equivalent BRE "{"
  behavior, when using regex(3).
  
  Any non-0 exit value is acceptable, depending on how the installed grep
  interprets the expression. GNU grep interprets it as non-matching, and
  in the future BSD grep will interpret it is an error.
  
  Submitted by:	Kyle Evans <kevans91 at ksu.edu>
  Reviewed by:	cem, ngie
  Differential Revision:	https://reviews.freebsd.org/D10572`

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	Tue May  2 18:31:26 2017	(r317693)
+++ head/contrib/netbsd-tests/usr.bin/grep/t_grep.sh	Tue May  2 18:37:11 2017	(r317694)
@@ -369,7 +369,7 @@ egrep_empty_invalid_head()
 }
 egrep_empty_invalid_body()
 {
-	atf_check -s exit:1 egrep '{' /dev/null
+	atf_check -e ignore -s not-exit:0 egrep '{' /dev/null
 }
 
 atf_test_case zerolen


More information about the svn-src-head mailing list