svn commit: r328549 - head/lib/libregex/tests

Kyle Evans kevans at FreeBSD.org
Mon Jan 29 14:00:34 UTC 2018


Author: kevans
Date: Mon Jan 29 14:00:33 2018
New Revision: 328549
URL: https://svnweb.freebsd.org/changeset/base/328549

Log:
  libregex: Mark gnuext test as an expected fail
  
  The test was added prematurely as a goal to reach with the GNU extension
  functionality, but the functionality has not yet been introduced. Mark it as
  an expected fail until that point.

Modified:
  head/lib/libregex/tests/libregex_test.sh

Modified: head/lib/libregex/tests/libregex_test.sh
==============================================================================
--- head/lib/libregex/tests/libregex_test.sh	Mon Jan 29 13:55:50 2018	(r328548)
+++ head/lib/libregex/tests/libregex_test.sh	Mon Jan 29 14:00:33 2018	(r328549)
@@ -29,6 +29,10 @@ check()
 {
 	local dataname="${1}"; shift
 
+	if [ "${dataname}" == "gnuext" ]; then
+		atf_expect_fail "GNU extensions are not currently implemented"
+	fi
+
 	prog="$(atf_get_srcdir)/h_regex"
 	data="$(atf_get_srcdir)/data/${dataname}.in"
 


More information about the svn-src-all mailing list