Diff for /embedaddon/pcre/testdata/testoutput15 between versions 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2012/02/21 23:50:25 version 1.1.1.3, 2012/10/09 09:19:18
Line 606  Need char = \x{bf} Line 606  Need char = \x{bf}
 /[^\xff]/8DZ  /[^\xff]/8DZ
 ------------------------------------------------------------------  ------------------------------------------------------------------
         Bra          Bra
        [\x00-\xfe] (neg)        [^\x{ff}]
         Ket          Ket
         End          End
 ------------------------------------------------------------------  ------------------------------------------------------------------
Line 868  Starting byte set: \xe1  Line 868  Starting byte set: \xe1 
 /[^\x{c4}]/8DZ  /[^\x{c4}]/8DZ
 ------------------------------------------------------------------  ------------------------------------------------------------------
         Bra          Bra
        [\x00-\xc3\xc5-\xff] (neg)        [^\x{c4}]
         Ket          Ket
         End          End
 ------------------------------------------------------------------  ------------------------------------------------------------------
Line 909  Capturing subpattern count = 0 Line 909  Capturing subpattern count = 0
 Options: utf  Options: utf
 First char = \x{c7}  First char = \x{c7}
 Need char = \x{bf}  Need char = \x{bf}
   
   /\w+\x{C4}/8BZ
   ------------------------------------------------------------------
           Bra
           \w++
           \x{c4}
           Ket
           End
   ------------------------------------------------------------------
       a\x{C4}\x{C4}
    0: a\x{c4}
   
   /\w+\x{C4}/8BZT1
   ------------------------------------------------------------------
           Bra
           \w+
           \x{c4}
           Ket
           End
   ------------------------------------------------------------------
       a\x{C4}\x{C4}
    0: a\x{c4}\x{c4}
       
   /\W+\x{C4}/8BZ
   ------------------------------------------------------------------
           Bra
           \W+
           \x{c4}
           Ket
           End
   ------------------------------------------------------------------
       !\x{C4}
    0: !\x{c4}
    
   /\W+\x{C4}/8BZT1
   ------------------------------------------------------------------
           Bra
           \W++
           \x{c4}
           Ket
           End
   ------------------------------------------------------------------
       !\x{C4}
    0: !\x{c4}
   
   /\W+\x{A1}/8BZ
   ------------------------------------------------------------------
           Bra
           \W+
           \x{a1}
           Ket
           End
   ------------------------------------------------------------------
       !\x{A1}
    0: !\x{a1}
    
   /\W+\x{A1}/8BZT1
   ------------------------------------------------------------------
           Bra
           \W+
           \x{a1}
           Ket
           End
   ------------------------------------------------------------------
       !\x{A1}
    0: !\x{a1}
   
   /X\s+\x{A0}/8BZ
   ------------------------------------------------------------------
           Bra
           X
           \s++
           \x{a0}
           Ket
           End
   ------------------------------------------------------------------
       X\x20\x{A0}\x{A0}
    0: X \x{a0}
   
   /X\s+\x{A0}/8BZT1
   ------------------------------------------------------------------
           Bra
           X
           \s+
           \x{a0}
           Ket
           End
   ------------------------------------------------------------------
       X\x20\x{A0}\x{A0}
    0: X \x{a0}\x{a0}
   
   /\S+\x{A0}/8BZ
   ------------------------------------------------------------------
           Bra
           \S+
           \x{a0}
           Ket
           End
   ------------------------------------------------------------------
       X\x{A0}\x{A0}
    0: X\x{a0}\x{a0}
   
   /\S+\x{A0}/8BZT1
   ------------------------------------------------------------------
           Bra
           \S++
           \x{a0}
           Ket
           End
   ------------------------------------------------------------------
       X\x{A0}\x{A0}
    0: X\x{a0}
   
   /\x{a0}+\s!/8BZ
   ------------------------------------------------------------------
           Bra
           \x{a0}++
           \s
           !
           Ket
           End
   ------------------------------------------------------------------
       \x{a0}\x20!
    0: \x{a0} !
   
   /\x{a0}+\s!/8BZT1
   ------------------------------------------------------------------
           Bra
           \x{a0}+
           \s
           !
           Ket
           End
   ------------------------------------------------------------------
       \x{a0}\x20!
    0: \x{a0} !
   
 /-- End of testinput15 --/  /-- End of testinput15 --/

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


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