libregex: disable some of the unimplemented test cases for now

This should allow the tests to actually pass. Future work will uncomment the
unimplemented tests as they're implemented.
This commit is contained in:
Kyle Evans 2020-08-04 02:16:43 +00:00
parent 18a1e2e9b9
commit 61898cde69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363819
2 changed files with 12 additions and 14 deletions

View file

@ -17,14 +17,16 @@ a\|b\|c b abc a
\s\+ b aSNTb SNT
# Word boundaries (\b, \B, \<, \>, \`, \')
# (is/not boundary, start/end word, start/end subject string)
\babc\b & <abc> abc
# Most of these are disabled for the moment, and will be re-enabled as
# we become feature complete.
#\babc\b & <abc> abc
\<abc\> & <abc> abc
\Babc\B & abc
\B[abc]\B & <abc> b
\B[abc]+ - <abc> bc
\B[abc]\+ b <abc> bc
\`abc\' & abc abc
\`.+\' - abNc abNc
\`.\+\' b abNc abNc
(\`a) - Na
(a\') - aN
#\Babc\B & abc
#\B[abc]\B & <abc> b
#\B[abc]+ - <abc> bc
#\B[abc]\+ b <abc> bc
#\`abc\' & abc abc
#\`.+\' - abNc abNc
#\`.\+\' b abNc abNc
#(\`a) - Na
#(a\') - aN

View file

@ -30,10 +30,6 @@ 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"