Diff for /embedaddon/pcre/testdata/testoutput18 between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:50:25 version 1.1.1.2, 2012/10/09 09:19:18
Line 535  No need char Line 535  No need char
 /[^\xff]/8DZ  /[^\xff]/8DZ
 ------------------------------------------------------------------  ------------------------------------------------------------------
         Bra          Bra
        [^\x{ff}]        [^\xff]
         Ket          Ket
         End          End
 ------------------------------------------------------------------  ------------------------------------------------------------------
Line 692  Options: utf Line 692  Options: utf
 No first char  No first char
 Need char = 'A'  Need char = 'A'
 Subject length lower bound = 1  Subject length lower bound = 1
Starting byte set: \x09 \x20 A \xa0 Starting byte set: \x09 \x20 A \xa0 \xff 
     CDBABC      CDBABC
  0: A   0: A
       \x{2000}ABC 
    0: \x{2000}A
   
   /\R*A/SI8
   Capturing subpattern count = 0
   Options: utf
   No first char
   Need char = 'A'
   Subject length lower bound = 1
   Starting byte set: \x0a \x0b \x0c \x0d A \x85 \xff 
       CDBABC
    0: A
       \x{2028}A  
    0: \x{2028}A
   
 /\v+A/SI8  /\v+A/SI8
 Capturing subpattern count = 0  Capturing subpattern count = 0
 Options: utf  Options: utf
Line 798  No set of starting bytes Line 812  No set of starting bytes
 /[^\x{c4}]/8DZ  /[^\x{c4}]/8DZ
 ------------------------------------------------------------------  ------------------------------------------------------------------
         Bra          Bra
        [^\x{c4}]        [^\xc4]
         Ket          Ket
         End          End
 ------------------------------------------------------------------  ------------------------------------------------------------------
Line 844  Error -24 (bad offset value) Line 858  Error -24 (bad offset value)
   
 /νΌ€/8  /νΌ€/8
 Failed: invalid UTF-16 string at offset 0  Failed: invalid UTF-16 string at offset 0
   
   /\w+\x{C4}/8BZ
   ------------------------------------------------------------------
           Bra
           \w++
           \xc4
           Ket
           End
   ------------------------------------------------------------------
       a\x{C4}\x{C4}
    0: a\x{c4}
   
   /\w+\x{C4}/8BZT1
   ------------------------------------------------------------------
           Bra
           \w+
           \xc4
           Ket
           End
   ------------------------------------------------------------------
       a\x{C4}\x{C4}
    0: a\x{c4}\x{c4}
       
   /\W+\x{C4}/8BZ
   ------------------------------------------------------------------
           Bra
           \W+
           \xc4
           Ket
           End
   ------------------------------------------------------------------
       !\x{C4}
    0: !\x{c4}
    
   /\W+\x{C4}/8BZT1
   ------------------------------------------------------------------
           Bra
           \W++
           \xc4
           Ket
           End
   ------------------------------------------------------------------
       !\x{C4}
    0: !\x{c4}
   
   /\W+\x{A1}/8BZ
   ------------------------------------------------------------------
           Bra
           \W+
           \xa1
           Ket
           End
   ------------------------------------------------------------------
       !\x{A1}
    0: !\x{a1}
    
   /\W+\x{A1}/8BZT1
   ------------------------------------------------------------------
           Bra
           \W+
           \xa1
           Ket
           End
   ------------------------------------------------------------------
       !\x{A1}
    0: !\x{a1}
   
   /X\s+\x{A0}/8BZ
   ------------------------------------------------------------------
           Bra
           X
           \s++
           \xa0
           Ket
           End
   ------------------------------------------------------------------
       X\x20\x{A0}\x{A0}
    0: X \x{a0}
   
   /X\s+\x{A0}/8BZT1
   ------------------------------------------------------------------
           Bra
           X
           \s+
           \xa0
           Ket
           End
   ------------------------------------------------------------------
       X\x20\x{A0}\x{A0}
    0: X \x{a0}\x{a0}
   
   /\S+\x{A0}/8BZ
   ------------------------------------------------------------------
           Bra
           \S+
           \xa0
           Ket
           End
   ------------------------------------------------------------------
       X\x{A0}\x{A0}
    0: X\x{a0}\x{a0}
   
   /\S+\x{A0}/8BZT1
   ------------------------------------------------------------------
           Bra
           \S++
           \xa0
           Ket
           End
   ------------------------------------------------------------------
       X\x{A0}\x{A0}
    0: X\x{a0}
   
   /\x{a0}+\s!/8BZ
   ------------------------------------------------------------------
           Bra
           \xa0++
           \s
           !
           Ket
           End
   ------------------------------------------------------------------
       \x{a0}\x20!
    0: \x{a0} !
   
   /\x{a0}+\s!/8BZT1
   ------------------------------------------------------------------
           Bra
           \xa0+
           \s
           !
           Ket
           End
   ------------------------------------------------------------------
       \x{a0}\x20!
    0: \x{a0} !
   
 /-- End of testinput18 --/  /-- End of testinput18 --/

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>