From bea8d27bce15a34f9c318107ac2b7a3b348e7791 Mon Sep 17 00:00:00 2001 From: Tobias Leich Date: Sun, 20 Jul 2014 15:55:05 +0200 Subject: [PATCH] RT #67122 unfudge tests but use valid codepoints --- S05-metasyntax/charset.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/S05-metasyntax/charset.t b/S05-metasyntax/charset.t index 40ddd026b2..8dc9871fbe 100644 --- a/S05-metasyntax/charset.t +++ b/S05-metasyntax/charset.t @@ -62,8 +62,7 @@ eval_lives_ok( '"foo" ~~ /<[f] #`[comment] + [o]>/', ok( "foo" ~~ /<[f] #`[comment] + [o]>/, 'comment embedded in charset works' ); # RT #67122 -#?rakudo skip 'large \\x char spec in regex (RT #67122) (noauto)' -ok "\x[10001]" ~~ /<[\x10000..\xEFFFF]>/, 'large \\x char spec'; +ok "\x[FFEF]" ~~ /<[\x0..\xFFEF]>/, 'large \\x char spec'; #?niecza todo eval_dies_ok( "'RT 71702' ~~ /<[d..b]>? RT/",