Some tests were in the wrong files.

This commit is contained in:
Philip.Hazel 2015-12-15 18:21:49 +00:00
parent 6761a598b5
commit 255974ed28
10 changed files with 29 additions and 25 deletions

2
testdata/testinput2 vendored
View File

@ -11,8 +11,6 @@
#forbid_utf
#newline_default lf any anycrlf
/abc\Cdef/info
# Test binary zeroes in the pattern
# /a\0B/ where 0 is a binary zero

View File

@ -7,7 +7,7 @@
/ab\Cde/never_backslash_c
/ab\Cde/
/ab\Cde/info
abXde
/(?<=ab\Cde)X/

View File

@ -3,7 +3,7 @@
# of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
# in some widths and not in others.
/ab\Cde/utf
/ab\Cde/utf,info
abXde
# This should produce an error diagnostic (\C in UTF lookbehind)

2
testdata/testinput5 vendored
View File

@ -1689,8 +1689,6 @@
/abc/utf,replace=xyz
abc\=zero_terminate
/abc\Cdef/info,utf
/a[[:punct:]b]/ucp,bincode
/a[[:punct:]b]/utf,ucp,bincode

View File

@ -11,13 +11,6 @@
#forbid_utf
#newline_default lf any anycrlf
/abc\Cdef/info
Capturing subpattern count = 0
Contains \C
First code unit = 'a'
Last code unit = 'f'
Subject length lower bound = 7
# Test binary zeroes in the pattern
# /a\0B/ where 0 is a binary zero

View File

@ -78,7 +78,12 @@
/ab\Cde/never_backslash_c
Failed: error 183 at offset 3: using \C is disabled by the application
/ab\Cde/
/ab\Cde/info
Capturing subpattern count = 0
Contains \C
First code unit = 'a'
Last code unit = 'e'
Subject length lower bound = 5
abXde
0: abXde

View File

@ -3,7 +3,13 @@
# of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
# in some widths and not in others.
/ab\Cde/utf
/ab\Cde/utf,info
Capturing subpattern count = 0
Contains \C
Options: utf
First code unit = 'a'
Last code unit = 'e'
Subject length lower bound = 0
abXde
0: abXde

View File

@ -3,7 +3,13 @@
# of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
# in some widths and not in others.
/ab\Cde/utf
/ab\Cde/utf,info
Capturing subpattern count = 0
Contains \C
Options: utf
First code unit = 'a'
Last code unit = 'e'
Subject length lower bound = 0
abXde
0: abXde

View File

@ -3,7 +3,13 @@
# of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
# in some widths and not in others.
/ab\Cde/utf
/ab\Cde/utf,info
Capturing subpattern count = 0
Contains \C
Options: utf
First code unit = 'a'
Last code unit = 'e'
Subject length lower bound = 0
abXde
0: abXde

View File

@ -4062,14 +4062,6 @@ No match
abc\=zero_terminate
1: xyz
/abc\Cdef/info,utf
Capturing subpattern count = 0
Contains \C
Options: utf
First code unit = 'a'
Last code unit = 'f'
Subject length lower bound = 0
/a[[:punct:]b]/ucp,bincode
------------------------------------------------------------------
Bra