/[pcre]/code/trunk/testdata/testinput6
ViewVC logotype

Diff of /code/trunk/testdata/testinput6

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 115 by ph10, Fri Mar 9 12:23:37 2007 UTC revision 351 by ph10, Fri Jul 4 18:27:16 2008 UTC
# Line 61  Line 61 
61      \x{09f}      \x{09f}
62    
63  /^\p{Cs}/8  /^\p{Cs}/8
64      \x{dfff}      \?\x{dfff}
65      ** Failers      ** Failers
66      \x{09f}      \x{09f}
67    
# Line 69  Line 69 
69      a      a
70      ** Failers      ** Failers
71      Z      Z
72      \x{dfff}      \x{e000}
73    
74  /^\p{Lm}/8  /^\p{Lm}/8
75      \x{2b0}      \x{2b0}
# Line 323  Line 323 
323      ** Failers      ** Failers
324      WXYZ      WXYZ
325    
326  /[\p{L}]/D  /[\p{L}]/DZ
327    
328  /[\p{^L}]/D  /[\p{^L}]/DZ
329    
330  /[\P{L}]/D  /[\P{L}]/DZ
331    
332  /[\P{^L}]/D  /[\P{^L}]/DZ
333    
334  /[abc\p{L}\x{0660}]/8D  /[abc\p{L}\x{0660}]/8DZ
335    
336  /[\p{Nd}]/8DM  /[\p{Nd}]/8DZ
337      1234      1234
338    
339  /[\p{Nd}+-]+/8DM  /[\p{Nd}+-]+/8DZ
340      1234      1234
341      12-34      12-34
342      12+\x{661}-34      12+\x{661}-34
# Line 425  Line 425 
425      A\x{391}\x{10427}\x{ff5a}\x{1fb0}      A\x{391}\x{10427}\x{ff5a}\x{1fb0}
426      A\x{391}\x{10427}\x{ff3a}\x{1fb8}      A\x{391}\x{10427}\x{ff3a}\x{1fb8}
427    
428  /A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8iD  /A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8iDZ
429    
430  /A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8D  /A\x{391}\x{10427}\x{ff3a}\x{1fb0}/8DZ
431    
432  /AB\x{1fb0}/8D  /AB\x{1fb0}/8DZ
433    
434  /AB\x{1fb0}/8Di  /AB\x{1fb0}/8DZi
435    
436  /\x{391}+/8i  /\x{391}+/8i
437      \x{391}\x{3b1}\x{3b1}\x{3b1}\x{391}      \x{391}\x{3b1}\x{3b1}\x{3b1}\x{391}
# Line 452  Line 452 
452      \x{c0}      \x{c0}
453      \x{e0}      \x{e0}
454    
455  /[\x{105}-\x{109}]/8iD  /[\x{105}-\x{109}]/8iDZ
456      \x{104}      \x{104}
457      \x{105}      \x{105}
458      \x{109}      \x{109}
# Line 460  Line 460 
460      \x{100}      \x{100}
461      \x{10a}      \x{10a}
462    
463  /[z-\x{100}]/8iD  /[z-\x{100}]/8iDZ
464      Z      Z
465      z      z
466      \x{39c}      \x{39c}
# Line 475  Line 475 
475      Y      Y
476      y      y
477    
478  /[z-\x{100}]/8Di  /[z-\x{100}]/8DZi
479    
480  /^\X/8  /^\X/8
481      A      A
# Line 763  of case for anything other than the ASCI Line 763  of case for anything other than the ASCI
763      \x{1b00}\x{12000}\x{7c0}\x{a840}\x{10900}      \x{1b00}\x{12000}\x{7c0}\x{a840}\x{10900}
764    
765  /The next two are special cases where the lengths of the different cases of the  /The next two are special cases where the lengths of the different cases of the
766  same character differ. The first went wrong with heap fram storage; the 2nd  same character differ. The first went wrong with heap frame storage; the 2nd
767  was broken in all cases./  was broken in all cases./
768    
769  /^\x{023a}+?(\x{0130}+)/8i  /^\x{023a}+?(\x{0130}+)/8i
# Line 771  was broken in all cases./ Line 771  was broken in all cases./
771    
772  /^\x{023a}+([^X])/8i  /^\x{023a}+([^X])/8i
773    \x{023a}\x{2c65}X    \x{023a}\x{2c65}X
774    
775    /Check property support in non-UTF-8 mode/
776    
777    /\p{L}{4}/
778        123abcdefg
779        123abc\xc4\xc5zz
780    
781    /\X{1,3}\d/
782      \x8aBCD
783    
784    /\X?\d/
785      \x8aBCD
786    
787    /\P{L}?\d/
788      \x8aBCD
789    
790    /[\PPP\x8a]{1,}\x80/
791        A\x80
792    
793    /(?:[\PPa*]*){8,}/
794    
795    /[\P{Any}]/BZ
796    
797    /[\P{Any}\E]/BZ
798    
799    /(\P{Yi}+\277)/
800    
801    /(\P{Yi}+\277)?/
802    
803    /(?<=\P{Yi}{3}A)X/
804    
805    /\p{Yi}+(\P{Yi}+)(?1)/
806    
807    /(\P{Yi}{2}\277)?/
808    
809    /[\P{Yi}A]/
810    
811    /[\P{Yi}\P{Yi}\P{Yi}A]/
812    
813    /[^\P{Yi}A]/
814    
815    /[^\P{Yi}\P{Yi}\P{Yi}A]/
816    
817    /(\P{Yi}*\277)*/
818    
819    /(\P{Yi}*?\277)*/
820    
821    /(\p{Yi}*+\277)*/
822    
823    /(\P{Yi}?\277)*/
824    
825    /(\P{Yi}??\277)*/
826    
827    /(\p{Yi}?+\277)*/
828    
829    /(\P{Yi}{0,3}\277)*/
830    
831    /(\P{Yi}{0,3}?\277)*/
832    
833    /(\p{Yi}{0,3}+\277)*/
834    
835    /^[\p{Arabic}]/8
836        \x{60e}
837        \x{656}
838        \x{657}
839        \x{658}
840        \x{659}
841        \x{65a}
842        \x{65b}
843        \x{65c}
844        \x{65d}
845        \x{65e}
846        \x{66a}
847        \x{6e9}
848        \x{6ef}
849        \x{6fa}
850        ** Failers
851        \x{600}
852        \x{650}
853        \x{651}
854        \x{652}
855        \x{653}
856        \x{654}
857        \x{655}
858        \x{65f}
859    
860    /^\p{Cyrillic}/8
861        \x{1d2b}
862    
863    /^\p{Common}/8
864        \x{589}
865        \x{60c}
866        \x{61f}
867        \x{964}
868        \x{965}
869        \x{970}
870    
871    /^\p{Inherited}/8
872        \x{64b}
873        \x{654}
874        \x{655}
875        \x{200c}
876        ** Failers
877        \x{64a}
878        \x{656}
879    
880    /^\p{Shavian}/8
881        \x{10450}
882        \x{1047f}
883    
884    /^\p{Deseret}/8
885        \x{10400}
886        \x{1044f}
887    
888    /^\p{Osmanya}/8
889        \x{10480}
890        \x{1049d}
891        \x{104a0}
892        \x{104a9}
893        ** Failers
894        \x{1049e}
895        \x{1049f}
896        \x{104aa}
897    
898    /\p{Zl}{2,3}+/8BZ
899        \xe2\x80\xa8\xe2\x80\xa8
900        \x{2028}\x{2028}\x{2028}
901    
902    /\p{Zl}/8BZ
903    
904    /\p{Lu}{3}+/8BZ
905    
906    /\pL{2}+/8BZ
907    
908    /\p{Cc}{2}+/8BZ
909    
910    /\x{c0}+\x{116}+/8i
911        \x{c0}\x{e0}\x{116}\x{117}
912    
913    /[\x{c0}\x{116}]+/8i
914        \x{c0}\x{e0}\x{116}\x{117}
915    
916    /\p{Carian}\p{Cham}\p{Kayah_Li}\p{Lepcha}\p{Lycian}\p{Lydian}\p{Ol_Chiki}\p{Rejang}\p{Saurashtra}\p{Sundanese}\p{Vai}/8
917        \x{102A4}\x{AA52}\x{A91D}\x{1C46}\x{10283}\x{1092E}\x{1C6B}\x{A93B}\x{A8BF}\x{1BA0}\x{A50A}====
918    
919    /\x{a77d}\x{1d79}/8i
920        \x{a77d}\x{1d79}
921        \x{1d79}\x{a77d}
922    
923    /\x{a77d}\x{1d79}/8
924        \x{a77d}\x{1d79}
925        ** Failers
926        \x{1d79}\x{a77d}
927    
928  / End of testinput6 /  / End of testinput6 /

Legend:
Removed from v.115  
changed lines
  Added in v.351

webmaster@exim.org
ViewVC Help
Powered by ViewVC 1.1.12