This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
TODO tests for reads from a scalar changed to upgraded after open
[perl5.git] / t / re /
2013-01-24 Karl WilliamsonAdd deprecation warning for literal PATWS under /x
2013-01-24 Karl Williamsonreg_mesg.t: Remove repetitious boiler plate
2013-01-24 Karl WilliamsonMove t/lib/warnings/regcomp to t/re/reg_mesg.t
2013-01-24 Karl Williamsonreg_mesg.t: Add cpabilities; improve output
2013-01-24 Karl Williamsonre/reg_mesg.t: White-space only; no code changes
2013-01-24 Karl Williamsonre/reg_mesg.t: Add tests for suppressing warnings
2013-01-20 Karl WilliamsonDeprecate certain rare uses of backslashes within regexes
2013-01-20 Karl WilliamsonRevert "Deprecate literal unescaped "{" in regexes."
2013-01-19 Karl WilliamsonExtend strictness for qr/(?[ \N{} ])/
2013-01-14 Karl WilliamsonAdd warnings for "\08", /\017/
2013-01-13 Karl Williamsonreg_mesg.t: Add, revise test names
2013-01-11 Karl WilliamsonAdd back-compat (?[ ]) tests
2013-01-11 Karl Williamsonreg_mesg.t: Test messages from (?[ ])
2013-01-11 Karl WilliamsonNew regex experimental feature: (?[ ])
2013-01-11 Karl WilliamsonBetter error pos for grok_bslash_[xo]
2013-01-11 Karl Williamsonregexp.t: Add a period in test name skip reason
2013-01-09 Karl Williamsont/re/re_tests: Remove duplicate test
2013-01-09 Karl Williamsont/re/re_tests: Remove unused variable initializations
2013-01-09 Karl Williamsonregexp.t: Skip tests that are supposed to
2013-01-04 Karl Williamsoncharnames: Deprecate character names with spacing issues
2013-01-04 David Mitchellmake m?$pat? match only once under ithreads
2012-12-31 Karl Williamsonlocale.t, pat_advanced.t: Remove TODOs
2012-12-31 Karl Williamsonre/pat_advanced.t: Add TODO test for recent regression
2012-12-28 Karl Williamsonregcomp.c: Clean up ANYOF_CLASS handling.
2012-12-27 Karl Williamsonpat_advanced.t: Add tests
2012-12-25 David Mitchell[perl #116148] Pattern utf8ness sticks around
2012-12-22 Karl WilliamsonRemove TODO for test for #114272
2012-12-10 Father ChrysostomosFix problems with -Dr during global destruction
2012-12-09 Karl WilliamsonAdd Todo test for Perl #114272
2012-12-04 Father ChrysostomosDeprecate lexical $_
2012-11-27 Father Chrysostomossubst.t: Test something I nearly broke
2012-11-27 Father ChrysostomosTest perl #4289
2012-11-25 Matthew Horsfall... RT-23180 - If we skip matching in pp_match for any...
2012-11-11 Karl Williamsontoke.c: Don't force \N{} into utf8 unnecessarily
2012-11-11 Karl WilliamsonValidate above-Latin1 characters in \N{} aliases
2012-11-11 Karl WilliamsonMake \N{alias} deprecations fatal.
2012-11-02 Father ChrysostomosFix /a++(?{})+$code_block/
2012-10-21 Dagfinn Ilmari Man... PATCH: [perl #115242] Test
2012-10-20 Karl Williamsonfold_grind.t: Set $| if debugging
2012-10-19 Karl Williamsonregexec.c: Fix bugs in regrepeat()
2012-10-17 Karl Williamsonregex: \R can match either 1 or 2 chars
2012-10-14 Karl Williamsonregexp.t: Add 'no warnings "utf8";
2012-10-14 Karl WilliamsonPATCH: [perl #89774] multi-char fold + its fold in...
2012-10-12 Father ChrysostomosDisable const repl optimisation for empty pattern
2012-10-12 Father Chrysostomos[perl #49190] Don’t prematurely optimise s/foo/bar...
2012-10-12 Father Chrysostomos[perl #49190] Stringify repl repeatedly in s///g
2012-10-12 Father ChrysostomosSimplify the fix for bug #41530
2012-10-12 Karl Williamsonregexec.c: Fix EXACT node handling in regrepeat()
2012-10-10 Father Chrysostomos[perl #26986] Skip subst const repl optimisation for...
2012-10-09 Karl WilliamsonPATCH: [perl #114982]: case-insensitive regex bug with...
2012-10-07 Father ChrysostomosFix infinite loop with $tied =~ s/non-utf8/utf8/
2012-10-06 Aaron CraneFix spurious "uninitialized value" warning in regex...
2012-09-30 Yves OrtonFix [perl #115050] Double empty sub-regexp makes "panic!"
2012-09-15 Karl WilliamsonPATCH: [perl #82954] Make "Can't do {n,m} with n >...
2012-09-12 David Mitchelladd test for 6502e08, s/(.)/die/e
2012-09-08 David Mitchellfix a bug in handling $+[0] and unicode
2012-09-08 David Mitchellstop $foo =~ /(bar)/g skipping copy
2012-09-08 David Mitchellrationalise t/re/pat_psycho.t
2012-09-08 David MitchellDon't copy all of the match string buffer
2012-09-08 David MitchellSeparate handling of ${^PREMATCH} from $` etc
2012-08-29 Colin KuskieRefactor t/re/no_utf8_pt.t to use test.pl instead of...
2012-08-26 Karl WilliamsonRevert "Experimentally Use Unicode 6.2 beta"
2012-08-26 Karl Williamsonregcomp.c: Special case /[UV_MAX]/
2012-08-12 Karl Williamsonregcomp.c: Optimization not valid for Latin Sharp S
2012-08-12 Karl Williamsonregcomp.c: Set flags when optimizing a [char class]
2012-08-12 Karl Williamsonre/re_tests: Correct Todo test
2012-08-12 Karl WilliamsonAdd some tests for [\N{}]
2012-08-02 Karl Williamsonregcomp.c: Fix \N{} multi-char fold buffer boundary bug
2012-08-02 Karl Williamsonregcomp.c: Fix multi-char fold bug
2012-07-26 Karl Williamsonmktables: Change \w definition to match new Unicode's
2012-07-25 Karl Williamsonregcomp.c: Use POSIXA, NPOSIXA
2012-07-25 Karl Williamsonregcomp.c: Optimize [^\n] into \N
2012-07-21 Karl Williamsonre_tests: Add tests for [perl #114220]
2012-07-14 Yves Ortonfix RT#114068 optimizer handles MEOL in middle of patte...
2012-06-30 Karl Williamsonreg_fold.t: Make test cases non-optimizable away
2012-06-30 Karl Williamsonno_utf8_pm.t: Add blank between 'not' and 'ok' in .t
2012-06-23 Yves Orton#101666: horrible regex parsing error error [sic]
2012-06-23 Yves Ortonturns out we cant maike a jump trie that starts with...
2012-06-20 Karl Williamsonreg_mesg.t: Add tests
2012-06-19 David Mitchelloverloading: make qr fallback to "" better
2012-06-17 Karl Williamsont/re/re_tests: Clarify comment
2012-06-17 Karl Williamsonregcomp.c: Warn and don't emit a NUL for e.g. /\87/
2012-06-16 David Mitchellfix paren unwinding with CURLYN, CURLYM
2012-06-15 David MitchellProperly restore PL_curcop after /(?{})/
2012-06-13 David Mitchellpropagate /msix and (?msix) etc flags into (??{})
2012-06-13 David Mitchelltest that code within /(?{})/ etc is optimised
2012-06-13 David Mitchelladd tests for (?{ return foo })
2012-06-13 David Mitchellun-TODO recursive split test
2012-06-13 David Mitchelladd test for /(??{exit})/
2012-06-13 David Mitchellavoid 'unescaped left brace' warnings
2012-06-13 David Mitchelladd tests for $1 modified compiling code block
2012-06-13 David Mitchelladd tests that (?{}) etc called in scalar context
2012-06-13 David Mitchellhandle weird/undef (?{}), (??{}) return value
2012-06-13 David Mitchellremove invalid assertion in (??{}) return code
2012-06-13 David Mitchellpropagate 'use re eval' into return from (??{})
2012-06-13 David Mitchellsave paren positions when running (?{}) code
2012-06-13 David Mitchell$+ and $^N not always correct on backtracking
2012-06-13 David Mitchellmake calling of /(?{}) code blocks correct
2012-06-13 David Mitchellpat_re_eval.t; test "use re 'eval'"
2012-06-13 David Mitchellensure regex evals report the right location
next