This is an automatically generated mail to inform you that tests are now available in t/spec/S05-mass/rx.t
commit 611d1a047e27d43a41f9e5c474340fa9d43617c7 Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Tue Aug 4 19:20:21 2009 +0000 [t/spec] Label tests for RT #64880 git-svn-id: http://svn.pugscode.org/p...@27870 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S05-mass/rx.t b/t/spec/S05-mass/rx.t index 3e85794..da1de99 100644 --- a/t/spec/S05-mass/rx.t +++ b/t/spec/S05-mass/rx.t @@ -420,32 +420,32 @@ ok '... --- ...' ~~ /"... --- ..."/, 'literal match (\")'; #### "... --- ..." ...---... n literal match (\") #?pugs todo 'feature' -#?rakudo skip 'parse error' +#?rakudo skip 'parse error (RT #64880)' ok '...---...' !~~ /"... --- ..."/, 'literal match (\")'; #### "ab<\">cd" ab<">cd y literal match with quote #?pugs todo 'feature' -#?rakudo skip 'parse error' +#?rakudo skip 'parse error (RT #64880)' ok 'ab<">cd' ~~ /"ab<\">cd"/, 'literal match with quote'; #### "ab<'>cd" ab<\'>cd y literal match with quote #?pugs todo 'feature' -#?rakudo skip 'parse error' +#?rakudo skip 'parse error (RT #64880)' ok 'ab<\'>cd' ~~ /"ab<'>cd"/, 'literal match with quote'; #?pugs todo 'feature' #### "ab\\cd" ab\x5ccd y literal match with backslash -#?rakudo skip 'parse error' +#?rakudo skip 'parse error (RT #64880)' ok 'ab\x5ccd' ~~ /"ab\\cd"/, 'literal match with backslash'; #### (ab)x"$0" abxab y literal match with interpolation #?pugs todo 'feature' -#?rakudo skip 'parse error' +#?rakudo skip 'parse error (RT #64880)' ok 'abxab' ~~ /(ab)x"$0"/, 'literal match with interpolation'; #### (ab)"x$0" abxab y literal match with interpolation #?pugs todo 'feature' -#?rakudo skip 'parse error' +#?rakudo skip 'parse error (RT #64880)' ok 'abxab' ~~ /(ab)"x$0"/, 'literal match with interpolation'; # L<S05/Extensible metasyntax (C<< <...> >>)/"A leading ? indicates">