Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 May 2017 18:37:11 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r317694 - head/contrib/netbsd-tests/usr.bin/grep
Message-ID:  <201705021837.v42IbBbi003349@repo.freebsd.org>

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



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