This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
re/reg_mesg.t: White-space only; no code changes
[perl5.git] / t / re / pat_advanced.t
index de48ad4..29a64dd 100644 (file)
@@ -17,12 +17,10 @@ $| = 1;
 BEGIN {
     chdir 't' if -d 't';
     @INC = ('../lib','.');
-    do "re/ReTest.pl" or die $@;
+    require './test.pl';
+    skip_all_if_miniperl("miniperl can't load Tie::Hash::NamedCapture, need for %+ and %-");
 }
 
-
-plan tests => 1304;  # Update this when adding/deleting tests.
-
 run_tests() unless caller;
 
 #
@@ -30,65 +28,60 @@ run_tests() unless caller;
 #
 sub run_tests {
 
-  SKIP:
     {
-        local $Message = '\C matches octet';
+        my $message = '\C matches octet';
         $_ = "a\x{100}b";
-        ok /(.)(\C)(\C)(.)/ or skip q [\C doesn't match], 4;
-        iseq $1, "a";
-        if ($IS_ASCII) {     # ASCII (or equivalent), should be UTF-8
-            iseq $2, "\xC4";
-            iseq $3, "\x80";
+        ok(/(.)(\C)(\C)(.)/, $message);
+        is($1, "a", $message);
+        if ($::IS_ASCII) {     # ASCII (or equivalent), should be UTF-8
+            is($2, "\xC4", $message);
+            is($3, "\x80", $message);
         }
-        elsif ($IS_EBCDIC) { # EBCDIC (or equivalent), should be UTF-EBCDIC
-            iseq $2, "\x8C";
-            iseq $3, "\x41";
+        elsif ($::IS_EBCDIC) { # EBCDIC (or equivalent), should be UTF-EBCDIC
+            is($2, "\x8C", $message);
+            is($3, "\x41", $message);
         }
         else {
             SKIP: {
-                ok 0, "Unexpected platform", "ord ('A') = $ordA";
+                ok 0, "Unexpected platform", "ord ('A') =" . ord 'A';
                 skip "Unexpected platform";
             }
         }
-        iseq $4, "b";
+        is($4, "b", $message);
     }
 
-
-  SKIP:
     {
-        local $Message = '\C matches octet';
+        my $message = '\C matches octet';
         $_ = "\x{100}";
-        ok /(\C)/g or skip q [\C doesn't match], 2;
-        if ($IS_ASCII) {
-            iseq $1, "\xC4";
+        ok(/(\C)/g, $message);
+        if ($::IS_ASCII) {
+            is($1, "\xC4", $message);
         }
-        elsif ($IS_EBCDIC) {
-            iseq $1, "\x8C";
+        elsif ($::IS_EBCDIC) {
+            is($1, "\x8C", $message);
         }
         else {
-            ok 0, "Unexpected platform", "ord ('A') = $ordA";
+            ok 0, "Unexpected platform", "ord ('A') = " . ord 'A';
         }
-        ok /(\C)/g or skip q [\C doesn't match];
-        if ($IS_ASCII) {
-            iseq $1, "\x80";
+        ok(/(\C)/g, $message);
+        if ($::IS_ASCII) {
+            is($1, "\x80", $message);
         }
-        elsif ($IS_EBCDIC) {
-            iseq $1, "\x41";
+        elsif ($::IS_EBCDIC) {
+            is($1, "\x41", $message);
         }
         else {
-            ok 0, "Unexpected platform", "ord ('A') = $ordA";
+            ok 0, "Unexpected platform", "ord ('A') = " . ord 'A';
         }
     }
 
-
     {
         # Japhy -- added 03/03/2001
         () = (my $str = "abc") =~ /(...)/;
         $str = "def";
-        iseq $1, "abc", 'Changing subject does not modify $1';
+        is($1, "abc", 'Changing subject does not modify $1');
     }
 
-
   SKIP:
     {
         # The trick is that in EBCDIC the explicit numeric range should
@@ -104,26 +97,24 @@ sub run_tests {
         # in most character sets match 'i' or 'j' nor would \xce match
         # 'I' or 'J', but strictly speaking these tests are here for
         # the good of EBCDIC, so let's test these only there.
-        nok "\x8e" !~ /[i-j]/, '"\x8e" !~ /[i-j]/';
-        nok "\xce" !~ /[I-J]/, '"\xce" !~ /[I-J]/';
+        unlike("\x8e", qr/[i-j]/, '"\x8e" !~ /[i-j]/');
+        unlike("\xce", qr/[I-J]/, '"\xce" !~ /[I-J]/');
     }
 
-
     {
         ok "\x{ab}"   =~ /\x{ab}/,   '"\x{ab}"   =~ /\x{ab}/  ';
         ok "\x{abcd}" =~ /\x{abcd}/, '"\x{abcd}" =~ /\x{abcd}/';
     }
 
-
     {
-        local $Message = 'bug id 20001008.001';
+        my $message = 'bug id 20001008.001';
 
         my @x = ("stra\337e 138", "stra\337e 138");
         for (@x) {
-            ok s/(\d+)\s*([\w\-]+)/$1 . uc $2/e;
-            ok my ($latin) = /^(.+)(?:\s+\d)/;
-            iseq $latin, "stra\337e";
-        ok $latin =~ s/stra\337e/straße/;
+            ok(s/(\d+)\s*([\w\-]+)/$1 . uc $2/e, $message);
+            ok(my ($latin) = /^(.+)(?:\s+\d)/, $message);
+            is($latin, "stra\337e", $message);
+           ok($latin =~ s/stra\337e/straße/, $message);
             #
             # Previous code follows, but outcommented - there were no tests.
             #
@@ -133,40 +124,34 @@ sub run_tests {
         }
     }
 
-
     {
-        local $Message = 'Test \x escapes';
-        ok "ba\xd4c" =~ /([a\xd4]+)/ && $1 eq "a\xd4";
-        ok "ba\xd4c" =~ /([a\xd4]+)/ && $1 eq "a\x{d4}";
-        ok "ba\x{d4}c" =~ /([a\xd4]+)/ && $1 eq "a\x{d4}";
-        ok "ba\x{d4}c" =~ /([a\xd4]+)/ && $1 eq "a\xd4";
-        ok "ba\xd4c" =~ /([a\x{d4}]+)/ && $1 eq "a\xd4";
-        ok "ba\xd4c" =~ /([a\x{d4}]+)/ && $1 eq "a\x{d4}";
-        ok "ba\x{d4}c" =~ /([a\x{d4}]+)/ && $1 eq "a\x{d4}";
-        ok "ba\x{d4}c" =~ /([a\x{d4}]+)/ && $1 eq "a\xd4";
+        my $message = 'Test \x escapes';
+        ok("ba\xd4c" =~ /([a\xd4]+)/ && $1 eq "a\xd4", $message);
+        ok("ba\xd4c" =~ /([a\xd4]+)/ && $1 eq "a\x{d4}", $message);
+        ok("ba\x{d4}c" =~ /([a\xd4]+)/ && $1 eq "a\x{d4}", $message);
+        ok("ba\x{d4}c" =~ /([a\xd4]+)/ && $1 eq "a\xd4", $message);
+        ok("ba\xd4c" =~ /([a\x{d4}]+)/ && $1 eq "a\xd4", $message);
+        ok("ba\xd4c" =~ /([a\x{d4}]+)/ && $1 eq "a\x{d4}", $message);
+        ok("ba\x{d4}c" =~ /([a\x{d4}]+)/ && $1 eq "a\x{d4}", $message);
+        ok("ba\x{d4}c" =~ /([a\x{d4}]+)/ && $1 eq "a\xd4", $message);
     }
 
-
-  SKIP:
     {
-        local $Message = 'Match code points > 255';
+        my $message = 'Match code points > 255';
         $_ = "abc\x{100}\x{200}\x{300}\x{380}\x{400}defg";
-        ok /(.\x{300})./ or skip "No match", 4;
-        ok $` eq "abc\x{100}"            && length ($`) == 4;
-        ok $& eq "\x{200}\x{300}\x{380}" && length ($&) == 3;
-        ok $' eq "\x{400}defg"           && length ($') == 5;
-        ok $1 eq "\x{200}\x{300}"        && length ($1) == 2;
+        ok(/(.\x{300})./, $message);
+        ok($` eq "abc\x{100}"            && length ($`) == 4, $message);
+        ok($& eq "\x{200}\x{300}\x{380}" && length ($&) == 3, $message);
+        ok($' eq "\x{400}defg"           && length ($') == 5, $message);
+        ok($1 eq "\x{200}\x{300}"        && length ($1) == 2, $message);
     }
 
-
-
     {
         my $x = "\x{10FFFD}";
         $x =~ s/(.)/$1/g;
         ok ord($x) == 0x10FFFD && length($x) == 1, "From Robin Houston";
     }
 
-
     {
         my %d = (
             "7f" => [0, 0, 0],
@@ -174,144 +159,140 @@ sub run_tests {
             "ff" => [1, 1, 0],
            "100" => [0, 1, 1],
         );
-      SKIP:
+
         while (my ($code, $match) = each %d) {
-            local $Message = "Properties of \\x$code";
+            my $message = "Properties of \\x$code";
             my $char = eval qq ["\\x{$code}"];
-            my $i = 0;
-            ok (($char =~ /[\x80-\xff]/)            xor !$$match [$i ++]);
-            ok (($char =~ /[\x80-\x{100}]/)         xor !$$match [$i ++]);
-            ok (($char =~ /[\x{100}]/)              xor !$$match [$i ++]);
+
+            is(0 + ($char =~ /[\x80-\xff]/),    $$match[0], $message);
+            is(0 + ($char =~ /[\x80-\x{100}]/), $$match[1], $message);
+            is(0 + ($char =~ /[\x{100}]/),      $$match[2], $message);
         }
     }
 
-
     {
         # From Japhy
-        local $Message;
-        must_warn 'qr/(?c)/',    '^Useless \(\?c\)';
-        must_warn 'qr/(?-c)/',   '^Useless \(\?-c\)';
-        must_warn 'qr/(?g)/',    '^Useless \(\?g\)';
-        must_warn 'qr/(?-g)/',   '^Useless \(\?-g\)';
-        must_warn 'qr/(?o)/',    '^Useless \(\?o\)';
-        must_warn 'qr/(?-o)/',   '^Useless \(\?-o\)';
+       foreach (qw(c g o)) {
+           warning_like(sub {'' =~ "(?$_)"},    qr/^Useless \(\?$_\)/);
+           warning_like(sub {'' =~ "(?-$_)"},   qr/^Useless \(\?-$_\)/);
+       }
 
         # Now test multi-error regexes
-        must_warn 'qr/(?g-o)/',  '^Useless \(\?g\).*\nUseless \(\?-o\)';
-        must_warn 'qr/(?g-c)/',  '^Useless \(\?g\).*\nUseless \(\?-c\)';
-        # (?c) means (?g) error won't be thrown
-        must_warn 'qr/(?o-cg)/', '^Useless \(\?o\).*\nUseless \(\?-c\)';
-        must_warn 'qr/(?ogc)/',  '^Useless \(\?o\).*\nUseless \(\?g\).*\n' .
-                                  'Useless \(\?c\)';
+       foreach (['(?g-o)', qr/^Useless \(\?g\)/, qr/^Useless \(\?-o\)/],
+                ['(?g-c)', qr/^Useless \(\?g\)/, qr/^Useless \(\?-c\)/],
+                # (?c) means (?g) error won't be thrown
+                ['(?o-cg)', qr/^Useless \(\?o\)/, qr/^Useless \(\?-c\)/],
+                ['(?ogc)', qr/^Useless \(\?o\)/, qr/^Useless \(\?g\)/,
+                 qr/^Useless \(\?c\)/],
+               ) {
+           my ($re, @warnings) = @$_;
+           warnings_like(sub {eval "qr/$re/"}, \@warnings, "qr/$re/ warns");
+       }
     }
 
-
     {
-        local $Message = "/x tests";
+        my $message = "/x tests";
         $_ = "foo";
-        eval_ok <<"        --";
+        foreach my $pat (<<"        --", <<"        --") {
           /f
            o\r
            o
            \$
           /x
         --
-        eval_ok <<"        --";
           /f
            o
            o
            \$\r
           /x
         --
+           is(eval $pat, 1, $message);
+           is($@, '', $message);
+       }
     }
 
-
     {
-        local $Message = "/o feature";
+        my $message = "/o feature";
         sub test_o {$_ [0] =~ /$_[1]/o; return $1}
-        iseq test_o ('abc', '(.)..'), 'a';
-        iseq test_o ('abc', '..(.)'), 'a';
+        is(test_o ('abc', '(.)..'), 'a', $message);
+        is(test_o ('abc', '..(.)'), 'a', $message);
     }
 
     {
         # Test basic $^N usage outside of a regex
-        local $Message = '$^N usage outside of a regex';
+        my $message = '$^N usage outside of a regex';
         my $x = "abcdef";
-        ok ($x =~ /cde/                  and !defined $^N);
-        ok ($x =~ /(cde)/                and $^N eq "cde");
-        ok ($x =~ /(c)(d)(e)/            and $^N eq   "e");
-        ok ($x =~ /(c(d)e)/              and $^N eq "cde");
-        ok ($x =~ /(foo)|(c(d)e)/        and $^N eq "cde");
-        ok ($x =~ /(c(d)e)|(foo)/        and $^N eq "cde");
-        ok ($x =~ /(c(d)e)|(abc)/        and $^N eq "abc");
-        ok ($x =~ /(c(d)e)|(abc)x/       and $^N eq "cde");
-        ok ($x =~ /(c(d)e)(abc)?/        and $^N eq "cde");
-        ok ($x =~ /(?:c(d)e)/            and $^N eq   "d");
-        ok ($x =~ /(?:c(d)e)(?:f)/       and $^N eq   "d");
-        ok ($x =~ /(?:([abc])|([def]))*/ and $^N eq   "f");
-        ok ($x =~ /(?:([ace])|([bdf]))*/ and $^N eq   "f");
-        ok ($x =~ /(([ace])|([bd]))*/    and $^N eq   "e");
-       {ok ($x =~ /(([ace])|([bdf]))*/   and $^N eq   "f");}
+        ok(($x =~ /cde/                  and !defined $^N), $message);
+        ok(($x =~ /(cde)/                and $^N eq "cde"), $message);
+        ok(($x =~ /(c)(d)(e)/            and $^N eq   "e"), $message);
+        ok(($x =~ /(c(d)e)/              and $^N eq "cde"), $message);
+        ok(($x =~ /(foo)|(c(d)e)/        and $^N eq "cde"), $message);
+        ok(($x =~ /(c(d)e)|(foo)/        and $^N eq "cde"), $message);
+        ok(($x =~ /(c(d)e)|(abc)/        and $^N eq "abc"), $message);
+        ok(($x =~ /(c(d)e)|(abc)x/       and $^N eq "cde"), $message);
+        ok(($x =~ /(c(d)e)(abc)?/        and $^N eq "cde"), $message);
+        ok(($x =~ /(?:c(d)e)/            and $^N eq   "d"), $message);
+        ok(($x =~ /(?:c(d)e)(?:f)/       and $^N eq   "d"), $message);
+        ok(($x =~ /(?:([abc])|([def]))*/ and $^N eq   "f"), $message);
+        ok(($x =~ /(?:([ace])|([bdf]))*/ and $^N eq   "f"), $message);
+        ok(($x =~ /(([ace])|([bd]))*/    and $^N eq   "e"), $message);
+       {ok(($x =~ /(([ace])|([bdf]))*/   and $^N eq   "f"), $message);}
         ## Test to see if $^N is automatically localized -- it should now
         ## have the value set in the previous test.
-        iseq $^N, "e", '$^N is automatically localized';
+        is($^N, "e", '$^N is automatically localized');
 
         # Now test inside (?{ ... })
-        local $Message = '$^N usage inside (?{ ... })';
+        $message = '$^N usage inside (?{ ... })';
         our ($y, $z);
-        ok ($x =~ /a([abc])(?{$y=$^N})c/                    and $y eq  "b");
-        ok ($x =~ /a([abc]+)(?{$y=$^N})d/                   and $y eq  "bc");
-        ok ($x =~ /a([abcdefg]+)(?{$y=$^N})d/               and $y eq  "bc");
-        ok ($x =~ /(a([abcdefg]+)(?{$y=$^N})d)(?{$z=$^N})e/ and $y eq  "bc"
-                                                            and $z eq "abcd");
-        ok ($x =~ /(a([abcdefg]+)(?{$y=$^N})de)(?{$z=$^N})/ and $y eq  "bc"
-                                                            and $z eq "abcde");
+        ok(($x =~ /a([abc])(?{$y=$^N})c/                    and $y eq  "b"), $message);
+        ok(($x =~ /a([abc]+)(?{$y=$^N})d/                   and $y eq  "bc"), $message);
+        ok(($x =~ /a([abcdefg]+)(?{$y=$^N})d/               and $y eq  "bc"), $message);
+        ok(($x =~ /(a([abcdefg]+)(?{$y=$^N})d)(?{$z=$^N})e/ and $y eq  "bc"
+                                                            and $z eq "abcd"), $message);
+        ok(($x =~ /(a([abcdefg]+)(?{$y=$^N})de)(?{$z=$^N})/ and $y eq  "bc"
+                                                            and $z eq "abcde"), $message);
 
     }
 
-
   SKIP:
     {
         ## Should probably put in tests for all the POSIX stuff,
         ## but not sure how to guarantee a specific locale......
 
-        skip "Not an ASCII platform", 2 unless $IS_ASCII;
-        local $Message = 'Test [[:cntrl:]]';
+        skip "Not an ASCII platform", 2 unless $::IS_ASCII;
+        my $message = 'Test [[:cntrl:]]';
         my $AllBytes = join "" => map {chr} 0 .. 255;
         (my $x = $AllBytes) =~ s/[[:cntrl:]]//g;
-        iseq $x, join "", map {chr} 0x20 .. 0x7E, 0x80 .. 0xFF;
+        is($x, join("", map {chr} 0x20 .. 0x7E, 0x80 .. 0xFF), $message);
 
         ($x = $AllBytes) =~ s/[^[:cntrl:]]//g;
-        iseq $x, join "", map {chr} 0x00 .. 0x1F, 0x7F;
+        is($x, (join "", map {chr} 0x00 .. 0x1F, 0x7F), $message);
     }
 
-
     {
         # With /s modifier UTF8 chars were interpreted as bytes
-        local $Message = "UTF-8 chars aren't bytes";
+        my $message = "UTF-8 chars aren't bytes";
         my $a = "Hello \x{263A} World";
         my @a = ($a =~ /./gs);
-        iseq $#a, 12;
+        is($#a, 12, $message);
     }
 
-
     {
-        local $Message = '. matches \n with /s';
+        my $message = '. matches \n with /s';
         my $str1 = "foo\nbar";
         my $str2 = "foo\n\x{100}bar";
-        my ($a, $b) = map {chr} $IS_ASCII ? (0xc4, 0x80) : (0x8c, 0x41);
+        my ($a, $b) = map {chr} $::IS_ASCII ? (0xc4, 0x80) : (0x8c, 0x41);
         my @a;
-        @a = $str1 =~ /./g;   iseq @a, 6; iseq "@a", "f o o b a r";
-        @a = $str1 =~ /./gs;  iseq @a, 7; iseq "@a", "f o o \n b a r";
-        @a = $str1 =~ /\C/g;  iseq @a, 7; iseq "@a", "f o o \n b a r";
-        @a = $str1 =~ /\C/gs; iseq @a, 7; iseq "@a", "f o o \n b a r";
-        @a = $str2 =~ /./g;   iseq @a, 7; iseq "@a", "f o o \x{100} b a r";
-        @a = $str2 =~ /./gs;  iseq @a, 8; iseq "@a", "f o o \n \x{100} b a r";
-        @a = $str2 =~ /\C/g;  iseq @a, 9; iseq "@a", "f o o \n $a $b b a r";
-        @a = $str2 =~ /\C/gs; iseq @a, 9; iseq "@a", "f o o \n $a $b b a r";
+        @a = $str1 =~ /./g;   is(@a, 6, $message); is("@a", "f o o b a r", $message);
+        @a = $str1 =~ /./gs;  is(@a, 7, $message); is("@a", "f o o \n b a r", $message);
+        @a = $str1 =~ /\C/g;  is(@a, 7, $message); is("@a", "f o o \n b a r", $message);
+        @a = $str1 =~ /\C/gs; is(@a, 7, $message); is("@a", "f o o \n b a r", $message);
+        @a = $str2 =~ /./g;   is(@a, 7, $message); is("@a", "f o o \x{100} b a r", $message);
+        @a = $str2 =~ /./gs;  is(@a, 8, $message); is("@a", "f o o \n \x{100} b a r", $message);
+        @a = $str2 =~ /\C/g;  is(@a, 9, $message); is("@a", "f o o \n $a $b b a r", $message);
+        @a = $str2 =~ /\C/gs; is(@a, 9, $message); is("@a", "f o o \n $a $b b a r", $message);
     }
 
-
     {
         no warnings 'digit';
         # Check that \x## works. 5.6.1 and 5.005_03 fail some of these.
@@ -407,14 +388,12 @@ sub run_tests {
 
     }
 
-
     {
         # High bit bug -- japhy
         my $x = "ab\200d";
         ok $x =~ /.*?\200/, "High bit fine";
     }
 
-
     {
         # The basic character classes and Unicode
         ok "\x{0100}" =~ /\w/, 'LATIN CAPITAL LETTER A WITH MACRON in /\w/';
@@ -422,168 +401,162 @@ sub run_tests {
         ok "\x{1680}" =~ /\s/, 'OGHAM SPACE MARK in /\s/';
     }
 
-
     {
-        local $Message = "Folding matches and Unicode";
-        ok "a\x{100}" =~ /A/i;
-        ok "A\x{100}" =~ /a/i;
-        ok "a\x{100}" =~ /a/i;
-        ok "A\x{100}" =~ /A/i;
-        ok "\x{101}a" =~ /\x{100}/i;
-        ok "\x{100}a" =~ /\x{100}/i;
-        ok "\x{101}a" =~ /\x{101}/i;
-        ok "\x{100}a" =~ /\x{101}/i;
-        ok "a\x{100}" =~ /A\x{100}/i;
-        ok "A\x{100}" =~ /a\x{100}/i;
-        ok "a\x{100}" =~ /a\x{100}/i;
-        ok "A\x{100}" =~ /A\x{100}/i;
-        ok "a\x{100}" =~ /[A]/i;
-        ok "A\x{100}" =~ /[a]/i;
-        ok "a\x{100}" =~ /[a]/i;
-        ok "A\x{100}" =~ /[A]/i;
-        ok "\x{101}a" =~ /[\x{100}]/i;
-        ok "\x{100}a" =~ /[\x{100}]/i;
-        ok "\x{101}a" =~ /[\x{101}]/i;
-        ok "\x{100}a" =~ /[\x{101}]/i;
+        my $message = "Folding matches and Unicode";
+        like("a\x{100}", qr/A/i, $message);
+        like("A\x{100}", qr/a/i, $message);
+        like("a\x{100}", qr/a/i, $message);
+        like("A\x{100}", qr/A/i, $message);
+        like("\x{101}a", qr/\x{100}/i, $message);
+        like("\x{100}a", qr/\x{100}/i, $message);
+        like("\x{101}a", qr/\x{101}/i, $message);
+        like("\x{100}a", qr/\x{101}/i, $message);
+        like("a\x{100}", qr/A\x{100}/i, $message);
+        like("A\x{100}", qr/a\x{100}/i, $message);
+        like("a\x{100}", qr/a\x{100}/i, $message);
+        like("A\x{100}", qr/A\x{100}/i, $message);
+        like("a\x{100}", qr/[A]/i, $message);
+        like("A\x{100}", qr/[a]/i, $message);
+        like("a\x{100}", qr/[a]/i, $message);
+        like("A\x{100}", qr/[A]/i, $message);
+        like("\x{101}a", qr/[\x{100}]/i, $message);
+        like("\x{100}a", qr/[\x{100}]/i, $message);
+        like("\x{101}a", qr/[\x{101}]/i, $message);
+        like("\x{100}a", qr/[\x{101}]/i, $message);
     }
 
-
     {
         use charnames ':full';
-        local $Message = "Folding 'LATIN LETTER A WITH GRAVE'";
+        my $message = "Folding 'LATIN LETTER A WITH GRAVE'";
 
         my $lower = "\N{LATIN SMALL LETTER A WITH GRAVE}";
         my $UPPER = "\N{LATIN CAPITAL LETTER A WITH GRAVE}";
 
-        ok $lower =~ m/$UPPER/i;
-        ok $UPPER =~ m/$lower/i;
-        ok $lower =~ m/[$UPPER]/i;
-        ok $UPPER =~ m/[$lower]/i;
+        like($lower, qr/$UPPER/i, $message);
+        like($UPPER, qr/$lower/i, $message);
+        like($lower, qr/[$UPPER]/i, $message);
+        like($UPPER, qr/[$lower]/i, $message);
 
-        local $Message = "Folding 'GREEK LETTER ALPHA WITH VRACHY'";
+        $message = "Folding 'GREEK LETTER ALPHA WITH VRACHY'";
 
         $lower = "\N{GREEK CAPITAL LETTER ALPHA WITH VRACHY}";
         $UPPER = "\N{GREEK SMALL LETTER ALPHA WITH VRACHY}";
 
-        ok $lower =~ m/$UPPER/i;
-        ok $UPPER =~ m/$lower/i;
-        ok $lower =~ m/[$UPPER]/i;
-        ok $UPPER =~ m/[$lower]/i;
+        like($lower, qr/$UPPER/i, $message);
+        like($UPPER, qr/$lower/i, $message);
+        like($lower, qr/[$UPPER]/i, $message);
+        like($UPPER, qr/[$lower]/i, $message);
 
-        local $Message = "Folding 'LATIN LETTER Y WITH DIAERESIS'";
+        $message = "Folding 'LATIN LETTER Y WITH DIAERESIS'";
 
         $lower = "\N{LATIN SMALL LETTER Y WITH DIAERESIS}";
         $UPPER = "\N{LATIN CAPITAL LETTER Y WITH DIAERESIS}";
 
-        ok $lower =~ m/$UPPER/i;
-        ok $UPPER =~ m/$lower/i;
-        ok $lower =~ m/[$UPPER]/i;
-        ok $UPPER =~ m/[$lower]/i;
+        like($lower, qr/$UPPER/i, $message);
+        like($UPPER, qr/$lower/i, $message);
+        like($lower, qr/[$UPPER]/i, $message);
+        like($UPPER, qr/[$lower]/i, $message);
     }
 
-
     {
         use charnames ':full';
-        local $PatchId = "13843";
-        local $Message = "GREEK CAPITAL LETTER SIGMA vs " .
+        my $message = "GREEK CAPITAL LETTER SIGMA vs " .
                          "COMBINING GREEK PERISPOMENI";
 
         my $SIGMA = "\N{GREEK CAPITAL LETTER SIGMA}";
         my $char  = "\N{COMBINING GREEK PERISPOMENI}";
 
-        may_not_warn sub {ok "_:$char:_" !~ m/_:$SIGMA:_/i};
+        warning_is(sub {unlike("_:$char:_", qr/_:$SIGMA:_/i, $message)}, undef,
+                  'Did not warn [change a5961de5f4215b5c]');
     }
 
-
     {
-        local $Message = '\X';
+        my $message = '\X';
         use charnames ':full';
 
-        ok "a!"                          =~ /^(\X)!/ && $1 eq "a";
-        ok "\xDF!"                       =~ /^(\X)!/ && $1 eq "\xDF";
-        ok "\x{100}!"                    =~ /^(\X)!/ && $1 eq "\x{100}";
-        ok "\x{100}\x{300}!"             =~ /^(\X)!/ && $1 eq "\x{100}\x{300}";
-        ok "\N{LATIN CAPITAL LETTER E}!" =~ /^(\X)!/ &&
-               $1 eq "\N{LATIN CAPITAL LETTER E}";
-        ok "\N{LATIN CAPITAL LETTER E}\N{COMBINING GRAVE ACCENT}!"
+        ok("a!"                          =~ /^(\X)!/ && $1 eq "a", $message);
+        ok("\xDF!"                       =~ /^(\X)!/ && $1 eq "\xDF", $message);
+        ok("\x{100}!"                    =~ /^(\X)!/ && $1 eq "\x{100}", $message);
+        ok("\x{100}\x{300}!"             =~ /^(\X)!/ && $1 eq "\x{100}\x{300}", $message);
+        ok("\N{LATIN CAPITAL LETTER E}!" =~ /^(\X)!/ &&
+               $1 eq "\N{LATIN CAPITAL LETTER E}", $message);
+        ok("\N{LATIN CAPITAL LETTER E}\N{COMBINING GRAVE ACCENT}!"
                                          =~ /^(\X)!/ &&
-               $1 eq "\N{LATIN CAPITAL LETTER E}\N{COMBINING GRAVE ACCENT}";
+               $1 eq "\N{LATIN CAPITAL LETTER E}\N{COMBINING GRAVE ACCENT}", $message);
 
-        local $Message = '\C and \X';
-        ok "!abc!" =~ /a\Cc/;
-        ok "!abc!" =~ /a\Xc/;
+        $message = '\C and \X';
+        like("!abc!", qr/a\Cc/, $message);
+        like("!abc!", qr/a\Xc/, $message);
     }
 
-
     {
-        local $Message = "Final Sigma";
+        my $message = "Final Sigma";
 
         my $SIGMA = "\x{03A3}"; # CAPITAL
         my $Sigma = "\x{03C2}"; # SMALL FINAL
         my $sigma = "\x{03C3}"; # SMALL
 
-        ok $SIGMA =~ /$SIGMA/i;
-        ok $SIGMA =~ /$Sigma/i;
-        ok $SIGMA =~ /$sigma/i;
+        like($SIGMA, qr/$SIGMA/i, $message);
+        like($SIGMA, qr/$Sigma/i, $message);
+        like($SIGMA, qr/$sigma/i, $message);
 
-        ok $Sigma =~ /$SIGMA/i;
-        ok $Sigma =~ /$Sigma/i;
-        ok $Sigma =~ /$sigma/i;
+        like($Sigma, qr/$SIGMA/i, $message);
+        like($Sigma, qr/$Sigma/i, $message);
+        like($Sigma, qr/$sigma/i, $message);
 
-        ok $sigma =~ /$SIGMA/i;
-        ok $sigma =~ /$Sigma/i;
-        ok $sigma =~ /$sigma/i;
+        like($sigma, qr/$SIGMA/i, $message);
+        like($sigma, qr/$Sigma/i, $message);
+        like($sigma, qr/$sigma/i, $message);
 
-        ok $SIGMA =~ /[$SIGMA]/i;
-        ok $SIGMA =~ /[$Sigma]/i;
-        ok $SIGMA =~ /[$sigma]/i;
+        like($SIGMA, qr/[$SIGMA]/i, $message);
+        like($SIGMA, qr/[$Sigma]/i, $message);
+        like($SIGMA, qr/[$sigma]/i, $message);
 
-        ok $Sigma =~ /[$SIGMA]/i;
-        ok $Sigma =~ /[$Sigma]/i;
-        ok $Sigma =~ /[$sigma]/i;
+        like($Sigma, qr/[$SIGMA]/i, $message);
+        like($Sigma, qr/[$Sigma]/i, $message);
+        like($Sigma, qr/[$sigma]/i, $message);
 
-        ok $sigma =~ /[$SIGMA]/i;
-        ok $sigma =~ /[$Sigma]/i;
-        ok $sigma =~ /[$sigma]/i;
+        like($sigma, qr/[$SIGMA]/i, $message);
+        like($sigma, qr/[$Sigma]/i, $message);
+        like($sigma, qr/[$sigma]/i, $message);
 
-        local $Message = "More final Sigma";
+        $message = "More final Sigma";
 
         my $S3 = "$SIGMA$Sigma$sigma";
 
-        ok ":$S3:" =~ /:(($SIGMA)+):/i   && $1 eq $S3 && $2 eq $sigma;
-        ok ":$S3:" =~ /:(($Sigma)+):/i   && $1 eq $S3 && $2 eq $sigma;
-        ok ":$S3:" =~ /:(($sigma)+):/i   && $1 eq $S3 && $2 eq $sigma;
+        ok(":$S3:" =~ /:(($SIGMA)+):/i   && $1 eq $S3 && $2 eq $sigma, $message);
+        ok(":$S3:" =~ /:(($Sigma)+):/i   && $1 eq $S3 && $2 eq $sigma, $message);
+        ok(":$S3:" =~ /:(($sigma)+):/i   && $1 eq $S3 && $2 eq $sigma, $message);
 
-        ok ":$S3:" =~ /:(([$SIGMA])+):/i && $1 eq $S3 && $2 eq $sigma;
-        ok ":$S3:" =~ /:(([$Sigma])+):/i && $1 eq $S3 && $2 eq $sigma;
-        ok ":$S3:" =~ /:(([$sigma])+):/i && $1 eq $S3 && $2 eq $sigma;
+        ok(":$S3:" =~ /:(([$SIGMA])+):/i && $1 eq $S3 && $2 eq $sigma, $message);
+        ok(":$S3:" =~ /:(([$Sigma])+):/i && $1 eq $S3 && $2 eq $sigma, $message);
+        ok(":$S3:" =~ /:(([$sigma])+):/i && $1 eq $S3 && $2 eq $sigma, $message);
     }
 
-
     {
         use charnames ':full';
-        local $Message = "Parlez-Vous " .
+        my $message = "Parlez-Vous " .
                          "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais?";
 
-        ok "Fran\N{LATIN SMALL LETTER C}ais" =~ /Fran.ais/ &&
-            $& eq "Francais";
-        ok "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais" =~ /Fran.ais/ &&
-            $& eq "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais";
-        ok "Fran\N{LATIN SMALL LETTER C}ais" =~ /Fran\Cais/ &&
-            $& eq "Francais";
+        ok("Fran\N{LATIN SMALL LETTER C}ais" =~ /Fran.ais/ &&
+            $& eq "Francais", $message);
+        ok("Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais" =~ /Fran.ais/ &&
+            $& eq "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais", $message);
+        ok("Fran\N{LATIN SMALL LETTER C}ais" =~ /Fran\Cais/ &&
+            $& eq "Francais", $message);
         # COMBINING CEDILLA is two bytes when encoded
-        ok "Franc\N{COMBINING CEDILLA}ais" =~ /Franc\C\Cais/;
-        ok "Fran\N{LATIN SMALL LETTER C}ais" =~ /Fran\Xais/ &&
-            $& eq "Francais";
-        ok "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais" =~ /Fran\Xais/  &&
-            $& eq "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais";
-        ok "Franc\N{COMBINING CEDILLA}ais" =~ /Fran\Xais/ &&
-            $& eq "Franc\N{COMBINING CEDILLA}ais";
-        ok "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais" =~
+        like("Franc\N{COMBINING CEDILLA}ais", qr/Franc\C\Cais/, $message);
+        ok("Fran\N{LATIN SMALL LETTER C}ais" =~ /Fran\Xais/ &&
+            $& eq "Francais", $message);
+        ok("Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais" =~ /Fran\Xais/  &&
+            $& eq "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais", $message);
+        ok("Franc\N{COMBINING CEDILLA}ais" =~ /Fran\Xais/ &&
+            $& eq "Franc\N{COMBINING CEDILLA}ais", $message);
+        ok("Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais" =~
            /Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais/  &&
-            $& eq "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais";
-        ok "Franc\N{COMBINING CEDILLA}ais" =~ /Franc\N{COMBINING CEDILLA}ais/ &&
-            $& eq "Franc\N{COMBINING CEDILLA}ais";
+            $& eq "Fran\N{LATIN SMALL LETTER C WITH CEDILLA}ais", $message);
+        ok("Franc\N{COMBINING CEDILLA}ais" =~ /Franc\N{COMBINING CEDILLA}ais/ &&
+            $& eq "Franc\N{COMBINING CEDILLA}ais", $message);
 
         my @f = (
             ["Fran\N{LATIN SMALL LETTER C}ais",                    "Francais"],
@@ -593,71 +566,68 @@ sub run_tests {
         );
         foreach my $entry (@f) {
             my ($subject, $match) = @$entry;
-            ok $subject =~ /Fran(?:c\N{COMBINING CEDILLA}?|
+            ok($subject =~ /Fran(?:c\N{COMBINING CEDILLA}?|
                     \N{LATIN SMALL LETTER C WITH CEDILLA})ais/x &&
-               $& eq $match;
+               $& eq $match, $message);
         }
     }
 
-
     {
-        local $Message = "Lingering (and useless) UTF8 flag doesn't mess up /i";
+        my $message = "Lingering (and useless) UTF8 flag doesn't mess up /i";
         my $pat = "ABcde";
         my $str = "abcDE\x{100}";
         chop $str;
-        ok $str =~ /$pat/i;
+        like($str, qr/$pat/i, $message);
 
         $pat = "ABcde\x{100}";
         $str = "abcDE";
         chop $pat;
-        ok $str =~ /$pat/i;
+        like($str, qr/$pat/i, $message);
 
         $pat = "ABcde\x{100}";
         $str = "abcDE\x{100}";
         chop $pat;
         chop $str;
-        ok $str =~ /$pat/i;
+        like($str, qr/$pat/i, $message);
     }
 
-
     {
         use charnames ':full';
-        local $Message = "LATIN SMALL LETTER SHARP S " .
+        my $message = "LATIN SMALL LETTER SHARP S " .
                          "(\N{LATIN SMALL LETTER SHARP S})";
 
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~
-                                            /\N{LATIN SMALL LETTER SHARP S}/;
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~
-                                            /\N{LATIN SMALL LETTER SHARP S}/i;
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~
-                                           /[\N{LATIN SMALL LETTER SHARP S}]/;
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~
-                                           /[\N{LATIN SMALL LETTER SHARP S}]/i;
+        like("\N{LATIN SMALL LETTER SHARP S}",
+            qr/\N{LATIN SMALL LETTER SHARP S}/, $message);
+        like("\N{LATIN SMALL LETTER SHARP S}",
+            qr/\N{LATIN SMALL LETTER SHARP S}/i, $message);
+        like("\N{LATIN SMALL LETTER SHARP S}",
+            qr/[\N{LATIN SMALL LETTER SHARP S}]/, $message);
+        like("\N{LATIN SMALL LETTER SHARP S}",
+            qr/[\N{LATIN SMALL LETTER SHARP S}]/i, $message);
 
-        ok "ss" =~  /\N{LATIN SMALL LETTER SHARP S}/i;
-        ok "SS" =~  /\N{LATIN SMALL LETTER SHARP S}/i;
-        ok "ss" =~ /[\N{LATIN SMALL LETTER SHARP S}]/i;
-        ok "SS" =~ /[\N{LATIN SMALL LETTER SHARP S}]/i;
+        like("ss", qr /\N{LATIN SMALL LETTER SHARP S}/i, $message);
+        like("SS", qr /\N{LATIN SMALL LETTER SHARP S}/i, $message);
+        like("ss", qr/[\N{LATIN SMALL LETTER SHARP S}]/i, $message);
+        like("SS", qr/[\N{LATIN SMALL LETTER SHARP S}]/i, $message);
 
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~ /ss/i;
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~ /SS/i;
+        like("\N{LATIN SMALL LETTER SHARP S}", qr/ss/i, $message);
+        like("\N{LATIN SMALL LETTER SHARP S}", qr/SS/i, $message);
 
-        local $Message = "Unoptimized named sequence in class";
-        ok "ss" =~ /[\N{LATIN SMALL LETTER SHARP S}x]/i;
-        ok "SS" =~ /[\N{LATIN SMALL LETTER SHARP S}x]/i;
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~
-          /[\N{LATIN SMALL LETTER SHARP S}x]/;
-        ok "\N{LATIN SMALL LETTER SHARP S}" =~
-          /[\N{LATIN SMALL LETTER SHARP S}x]/i;
+         $message = "Unoptimized named sequence in class";
+        like("ss", qr/[\N{LATIN SMALL LETTER SHARP S}x]/i, $message);
+        like("SS", qr/[\N{LATIN SMALL LETTER SHARP S}x]/i, $message);
+        like("\N{LATIN SMALL LETTER SHARP S}",
+            qr/[\N{LATIN SMALL LETTER SHARP S}x]/, $message);
+        like("\N{LATIN SMALL LETTER SHARP S}",
+            qr/[\N{LATIN SMALL LETTER SHARP S}x]/i, $message);
     }
 
-
     {
         # More whitespace: U+0085, U+2028, U+2029\n";
 
         # U+0085, U+00A0 need to be forced to be Unicode, the \x{100} does that.
       SKIP: {
-          skip "EBCDIC platform", 4 if $IS_EBCDIC;
+          skip "EBCDIC platform", 4 if $::IS_EBCDIC;
           # Do \x{0015} and \x{0041} match \s in EBCDIC?
           ok "<\x{100}\x{0085}>" =~ /<\x{100}\s>/, '\x{0085} in \s';
           ok        "<\x{0085}>" =~        /<\v>/, '\x{0085} in \v';
@@ -700,21 +670,21 @@ sub run_tests {
         }
     }
 
-
     {
         # . with /s should work on characters, as opposed to bytes
-        local $Message = ". with /s works on characters, not bytes";
+        my $message = ". with /s works on characters, not bytes";
 
         my $s = "\x{e4}\x{100}";
         # This is not expected to match: the point is that
         # neither should we get "Malformed UTF-8" warnings.
-        may_not_warn sub {$s =~ /\G(.+?)\n/gcs}, "No 'Malformed UTF-8' warning";
+        warning_is(sub {$s =~ /\G(.+?)\n/gcs}, undef,
+                  "No 'Malformed UTF-8' warning");
 
         my @c;
         push @c => $1 while $s =~ /\G(.)/gs;
 
         local $" = "";
-        iseq "@c", $s;
+        is("@c", $s, $message);
 
         # Test only chars < 256
         my $t1 = "Q003\n\n\x{e4}\x{f6}\n\nQ004\n\n\x{e7}";
@@ -730,25 +700,23 @@ sub run_tests {
         }
         $r2 =~ s/\x{100}//;
 
-        iseq $r1, $r2;
+        is($r1, $r2, $message);
     }
 
-
     {
-        local $Message = "Unicode lookbehind";
-        ok "A\x{100}B"        =~ /(?<=A.)B/;
-        ok "A\x{200}\x{300}B" =~ /(?<=A..)B/;
-        ok "\x{400}AB"        =~ /(?<=\x{400}.)B/;
-        ok "\x{500}\x{600}B"  =~ /(?<=\x{500}.)B/;
+        my $message = "Unicode lookbehind";
+        like("A\x{100}B"       , qr/(?<=A.)B/, $message);
+        like("A\x{200}\x{300}B", qr/(?<=A..)B/, $message);
+        like("\x{400}AB"       , qr/(?<=\x{400}.)B/, $message);
+        like("\x{500}\x{600}B" , qr/(?<=\x{500}.)B/, $message);
 
         # Original code also contained:
         # ok "\x{500\x{600}}B"  =~ /(?<=\x{500}.)B/;
         # but that looks like a typo.
     }
 
-
     {
-        local $Message = 'UTF-8 hash keys and /$/';
+        my $message = 'UTF-8 hash keys and /$/';
         # http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters
         #                                         /2002-01/msg01327.html
 
@@ -759,41 +727,38 @@ sub run_tests {
         for (keys %u) {
             my $m1 =            /^\w*$/ ? 1 : 0;
             my $m2 = $u {$_} =~ /^\w*$/ ? 1 : 0;
-            iseq $m1, $m2;
+            is($m1, $m2, $message);
         }
     }
 
-
     {
-        local $Message = "No SEGV in s/// and UTF-8";
+        my $message = "No SEGV in s/// and UTF-8";
         my $s = "s#\x{100}" x 4;
-        ok $s =~ s/[^\w]/ /g;
+        ok($s =~ s/[^\w]/ /g, $message);
         if ( 1 or $ENV{PERL_TEST_LEGACY_POSIX_CC} ) {
-            iseq $s, "s \x{100}" x 4;
+            is($s, "s \x{100}" x 4, $message);
         }
         else {
-            iseq $s, "s  " x 4;
+            is($s, "s  " x 4, $message);
         }
     }
 
-
     {
-        local $Message = "UTF-8 bug (maybe already known?)";
+        my $message = "UTF-8 bug (maybe already known?)";
         my $u = "foo";
         $u =~ s/./\x{100}/g;
-        iseq $u, "\x{100}\x{100}\x{100}";
+        is($u, "\x{100}\x{100}\x{100}", $message);
 
         $u = "foobar";
         $u =~ s/[ao]/\x{100}/g;
-        iseq $u, "f\x{100}\x{100}b\x{100}r";
+        is($u, "f\x{100}\x{100}b\x{100}r", $message);
 
         $u =~ s/\x{100}/e/g;
-        iseq $u, "feeber";
+        is($u, "feeber", $message);
     }
 
-
     {
-        local $Message = "UTF-8 bug with s///";
+        my $message = "UTF-8 bug with s///";
         # check utf8/non-utf8 mixtures
         # try to force all float/anchored check combinations
 
@@ -801,42 +766,44 @@ sub run_tests {
         my $subst;
         for my $re ("xx.*$c", "x.*$c$c", "$c.*xx", "$c$c.*x",
                     "xx.*(?=$c)", "(?=$c).*xx",) {
-            ok "xxx" !~ /$re/;
-            ok +($subst = "xxx") !~ s/$re//;
+            unlike("xxx", qr/$re/, $message);
+            ok(+($subst = "xxx") !~ s/$re//, $message);
         }
         for my $re ("xx.*$c*", "$c*.*xx") {
-            ok "xxx" =~ /$re/;
-            ok +($subst = "xxx") =~ s/$re//;
-            iseq $subst, "";
+            like("xxx", qr/$re/, $message);
+            ok(+($subst = "xxx") =~ s/$re//, $message);
+            is($subst, "", $message);
         }
         for my $re ("xxy*", "y*xx") {
-            ok "xx$c" =~ /$re/;
-            ok +($subst = "xx$c") =~ s/$re//;
-            iseq $subst, $c;
-            ok "xy$c" !~ /$re/;
-            ok +($subst = "xy$c") !~ s/$re//;
+            like("xx$c", qr/$re/, $message);
+            ok(+($subst = "xx$c") =~ s/$re//, $message);
+            is($subst, $c, $message);
+            unlike("xy$c", qr/$re/, $message);
+            ok(+($subst = "xy$c") !~ s/$re//, $message);
         }
         for my $re ("xy$c*z", "x$c*yz") {
-            ok "xyz" =~ /$re/;
-            ok +($subst = "xyz") =~ s/$re//;
-            iseq $subst, "";
+            like("xyz", qr/$re/, $message);
+            ok(+($subst = "xyz") =~ s/$re//, $message);
+            is($subst, "", $message);
         }
     }
 
+    {
+        # The second half of RT #114808
+        warning_is(sub {'aa' =~ /.+\x{100}/}, undef,
+                   'utf8-only floating substr, non-utf8 target, no warning');
+    }
 
     {
-        local $Message = "qr /.../x";
+        my $message = "qr /.../x";
         my $R = qr / A B C # D E/x;
-        ok "ABCDE" =~    $R   && $& eq "ABC";
-        ok "ABCDE" =~   /$R/  && $& eq "ABC";
-        ok "ABCDE" =~  m/$R/  && $& eq "ABC";
-        ok "ABCDE" =~  /($R)/ && $1 eq "ABC";
-        ok "ABCDE" =~ m/($R)/ && $1 eq "ABC";
+        ok("ABCDE" =~    $R   && $& eq "ABC", $message);
+        ok("ABCDE" =~   /$R/  && $& eq "ABC", $message);
+        ok("ABCDE" =~  m/$R/  && $& eq "ABC", $message);
+        ok("ABCDE" =~  /($R)/ && $1 eq "ABC", $message);
+        ok("ABCDE" =~ m/($R)/ && $1 eq "ABC", $message);
     }
 
-
-
-
     {
         local $\;
         $_ = 'aaaaaaaaaa';
@@ -847,9 +814,6 @@ sub run_tests {
         ok +($a = $_, $a =~ s/[^\d]+/./g), 's/[^\s]/ utf8';
     }
 
-
-
-
     {
         # Subject: Odd regexp behavior
         # From: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk>
@@ -857,35 +821,23 @@ sub run_tests {
         # Message-Id: <E18o4nw-0008Ly-00@wisbech.cl.cam.ac.uk>
         # To: perl-unicode@perl.org
 
-        local $Message = 'Markus Kuhn 2003-02-26';
+        my $message = 'Markus Kuhn 2003-02-26';
 
         my $x = "\x{2019}\nk";
-        ok $x =~ s/(\S)\n(\S)/$1 $2/sg;
-        ok $x eq "\x{2019} k";
+        ok($x =~ s/(\S)\n(\S)/$1 $2/sg, $message);
+        is($x, "\x{2019} k", $message);
 
         $x = "b\nk";
-        ok $x =~ s/(\S)\n(\S)/$1 $2/sg;
-        ok $x eq "b k";
+        ok($x =~ s/(\S)\n(\S)/$1 $2/sg, $message);
+        is($x, "b k", $message);
 
-        ok "\x{2019}" =~ /\S/;
+        like("\x{2019}", qr/\S/, $message);
     }
 
-
-    {
-        # XXX DAPM 13-Apr-06. Recursive split is still broken. It's only luck it
-        # hasn't been crashing. Disable this test until it is fixed properly.
-        # XXX also check what it returns rather than just doing ok(1,...)
-        # split /(?{ split "" })/, "abc";
-        local $TODO = "Recursive split is still broken";
-        ok 0, 'cache_re & "(?{": it dumps core in 5.6.1 & 5.8.0';
-    }
-
-
     {
         ok "\x{100}\n" =~ /\x{100}\n$/, "UTF-8 length cache and fbm_compile";
     }
 
-
     {
         package Str;
         use overload q /""/ => sub {${$_ [0]};};
@@ -900,6 +852,9 @@ sub run_tests {
         my $re = qq /^([^X]*)X/;
         utf8::upgrade ($re);
         ok "\x{100}X" =~ /$re/, "S_cl_and ANYOF_UNICODE & ANYOF_INVERTED";
+        my $loc_re = qq /(?l:^([^X]*)X)/;
+        utf8::upgrade ($loc_re);
+        ok "\x{100}X" =~ /$loc_re/, "locale, S_cl_and ANYOF_UNICODE & ANYOF_INVERTED";
     }
 
     {
@@ -908,34 +863,36 @@ sub run_tests {
     }
 
     {
-        local $Message = '<20030808193656.5109.1@llama.ni-s.u-net.com>';
+        my $message = '<20030808193656.5109.1@llama.ni-s.u-net.com>';
 
         # LATIN SMALL/CAPITAL LETTER A WITH MACRON
-        ok "  \x{101}" =~ qr/\x{100}/i;
+        like("  \x{101}", qr/\x{100}/i, $message);
 
         # LATIN SMALL/CAPITAL LETTER A WITH RING BELOW
-        ok "  \x{1E01}" =~ qr/\x{1E00}/i;
+        like("  \x{1E01}", qr/\x{1E00}/i, $message);
 
         # DESERET SMALL/CAPITAL LETTER LONG I
-        ok "  \x{10428}" =~ qr/\x{10400}/i;
+        like("  \x{10428}", qr/\x{10400}/i, $message);
 
         # LATIN SMALL/CAPITAL LETTER A WITH RING BELOW + 'X'
-        ok "  \x{1E01}x" =~ qr/\x{1E00}X/i;
+        like("  \x{1E01}x", qr/\x{1E00}X/i, $message);
     }
 
     {
-        for (120 .. 130) {
+        for (120 .. 130, 240 .. 260) {
             my $head = 'x' x $_;
-            local $Message = q [Don't misparse \x{...} in regexp ] .
-                             q [near 127 char EXACT limit];
+            my $message = q [Don't misparse \x{...} in regexp ] .
+                             q [near EXACT char count limit];
             for my $tail ('\x{0061}', '\x{1234}', '\x61') {
-                eval_ok qq ["$head$tail" =~ /$head$tail/];
+                eval qq{like("$head$tail", qr/$head$tail/, \$message)};
+               is($@, '', $message);
             }
-            local $Message = q [Don't misparse \N{...} in regexp ] .
-                             q [near 127 char EXACT limit];
+            $message = q [Don't misparse \N{...} in regexp ] .
+                             q [near EXACT char count limit];
             for my $tail ('\N{SNOWFLAKE}') {
-                eval_ok qq [use charnames ':full';
-                           "$head$tail" =~ /$head$tail/];
+                eval qq {use charnames ':full';
+                         like("$head$tail", qr/$head$tail/, \$message)};
+               is($@, '', $message);
             }
         }
     }
@@ -943,11 +900,11 @@ sub run_tests {
     {   # TRIE related
         our @got = ();
         "words" =~ /(word|word|word)(?{push @got, $1})s$/;
-        iseq @got, 1, "TRIE optimisation";
+        is(@got, 1, "TRIE optimisation");
 
         @got = ();
         "words" =~ /(word|word|word)(?{push @got,$1})s$/i;
-        iseq @got, 1,"TRIEF optimisation";
+        is(@got, 1,"TRIEF optimisation");
 
         my @nums = map {int rand 1000} 1 .. 100;
         my $re = "(" . (join "|", @nums) . ")";
@@ -970,7 +927,6 @@ sub run_tests {
         ok $ok, "Trie min count matches";
     }
 
-
     {
         # TRIE related
         # LATIN SMALL/CAPITAL LETTER A WITH MACRON
@@ -1014,9 +970,6 @@ sub run_tests {
            "COMMON PREFIX TRIEF + LATIN SMALL LETTER SHARP S";
     }
 
-
-
-
     {
     BEGIN {
         unshift @INC, 'lib';
@@ -1024,18 +977,31 @@ sub run_tests {
         use Cname;
 
         ok 'fooB'  =~ /\N{foo}[\N{B}\N{b}]/, "Passthrough charname";
+        my $name = "foo\xDF";
+        my $result = eval "'A${name}B'  =~ /^A\\N{$name}B\$/";
+        ok !$@ && $result,  "Passthrough charname of non-ASCII, Latin1";
         #
         # Why doesn't must_warn work here?
         #
         my $w;
         local $SIG {__WARN__} = sub {$w .= "@_"};
         eval 'q(xxWxx) =~ /[\N{WARN}]/';
-        ok $w && $w =~ /Using just the first character returned by \\N{} in character class/,
+        ok $w && $w =~ /Using just the first character returned by \\N\{} in character class/,
                  "single character in [\\N{}] warning";
 
         undef $w;
         eval q [ok "\0" !~ /[\N{EMPTY-STR}XY]/,
-                   "Zerolength charname in charclass doesn't match \\0"];
+                   "Zerolength charname in charclass doesn't match \\\\0"];
+        ok $w && $w =~ /Ignoring zero length/,
+                 'Ignoring zero length \N{} in character class warning';
+        undef $w;
+        eval q [ok 'xy' =~ /x[\N{EMPTY-STR} y]/x,
+                    'Empty string charname in [] is ignored; finds a following character'];
+        ok $w && $w =~ /Ignoring zero length/,
+                 'Ignoring zero length \N{} in character class warning';
+        undef $w;
+        eval q [ok 'x ' =~ /x[\N{EMPTY-STR} y]/,
+                    'Empty string charname in [] is ignored; finds a following blank under /x'];
         ok $w && $w =~ /Ignoring zero length/,
                  'Ignoring zero length \N{} in character class warning';
 
@@ -1048,33 +1014,69 @@ sub run_tests {
         ok "\N{LONG-STR}" =~ /^\N{LONG-STR}$/, 'Verify that long string works';
         ok "\N{LONG-STR}" =~ /^\N{LONG-STR}$/i, 'Verify under folding that long string works';
 
-        # If remove the limitation in regcomp code these should work
-        # differently
-        undef $w;
-        eval q [ok "\N{LONG-STR}" =~ /^\N{TOO-LONG-STR}$/, 'Verify that too long a string fails gracefully'];
-        ok $w && $w =~ /Using just the first characters returned/, 'Verify that got too-long string warning in \N{} that exceeds the limit';
-        undef $w;
-        eval q [ok "\N{LONG-STR}" =~ /^\N{TOO-LONG-STR}$/i, 'Verify under folding that too long a string fails gracefully'];
-        ok $w && $w =~ /Using just the first characters returned/, 'Verify under folding that got too-long string warning in \N{} that exceeds the limit';
+        eval '/(?[[\N{EMPTY-STR}]])/';
+        ok $@ && $@ =~ /Zero length \\N\{}/;
+
         undef $w;
-        eval q [ok "\N{TOO-LONG-STR}" !~ /^\N{TOO-LONG-STR}$/, 'Verify that too long a string doesnt work'];
-        ok $w && $w =~ /Using just the first characters returned/, 'Verify that got too-long string warning in \N{} that exceeds the limit';
+        eval q [is("\N{TOO  MANY SPACES}", "TOO  MANY SPACES", "Multiple spaces in character name works")];
+        like ($w, qr/A sequence of multiple spaces in a charnames alias definition is deprecated/, "... but returns a deprecation warning");
+        eval q [use utf8; is("\N{TOO  MANY SPACES}", "TOO  MANY SPACES", "Same under 'use utf8': they work")];
+        like ($w, qr/A sequence of multiple spaces in a charnames alias definition is deprecated/, "... but return a deprecation warning");
+        {
+            no warnings 'deprecated';
+            undef $w;
+            eval q ["\N{TOO  MANY SPACES}"];
+            ok (! defined $w, "... and no warning if warnings are off");
+            eval q [use utf8; "\N{TOO  MANY SPACES}"];
+            ok (! defined $w, "... same under 'use utf8'");
+        }
+
         undef $w;
-        eval q [ok "\N{TOO-LONG-STR}" !~ /^\N{TOO-LONG-STR}$/i, 'Verify under folding that too long a string doesnt work'];
-        ok $w && $w =~ /Using just the first characters returned/i, 'Verify under folding that got too-long string warning in \N{} that exceeds the limit';
+        eval q [is("\N{TRAILING SPACE }", "TRAILING SPACE ", "Trailing space in character name works")];
+        like ($w, qr/Trailing white-space in a charnames alias definition is deprecated/, "... but returns a deprecation warning");
+        eval q [use utf8; is("\N{TRAILING SPACE }", "TRAILING SPACE ", "Same under 'use utf8': they work")];
+        like ($w, qr/Trailing white-space in a charnames alias definition is deprecated/, "... but returns a deprecation warning");
+        {
+            no warnings 'deprecated';
+            undef $w;
+            eval q ["\N{TRAILING SPACE }"];
+            ok (! defined $w, "... and no warning if warnings are off");
+            eval q [use utf8; "\N{TRAILING SPACE }"];
+            ok (! defined $w, "... same under 'use utf8'");
+        }
+
+        # If remove the limitation in regcomp code these should work
+        # differently
         undef $w;
+        eval q [ok "\N{TOO-LONG-STR}" =~ /^\N{TOO-LONG-STR}$/, 'Verify that what once was too long a string works'];
         eval 'q(syntax error) =~ /\N{MALFORMED}/';
         ok $@ && $@ =~ /Malformed/, 'Verify that malformed utf8 gives an error';
-        undef $w;
         eval 'q() =~ /\N{4F}/';
-        ok $w && $w =~ /Deprecated/, 'Verify that leading digit in name gives warning';
-        undef $w;
+        ok $@ && $@ =~ /Invalid character/, 'Verify that leading digit in name gives error';
         eval 'q() =~ /\N{COM,MA}/';
-        ok $w && $w =~ /Deprecated/, 'Verify that comma in name gives warning';
-        undef $w;
-        my $name = "A\x{D7}O";
+        ok $@ && $@ =~ /Invalid character/, 'Verify that comma in name gives error';
+        $name = "A\x{D7}O";
         eval "q(W) =~ /\\N{$name}/";
-        ok $w && $w =~ /Deprecated/, 'Verify that latin1 symbol in name gives warning';
+        ok $@ && $@ =~ /Invalid character/, 'Verify that latin1 symbol in name gives error';
+        my $utf8_name = "7 CITIES OF GOLD";
+        utf8::upgrade($utf8_name);
+        eval "use utf8; q(W) =~ /\\N{$utf8_name}/";
+        ok $@ && $@ =~ /Invalid character/, 'Verify that leading digit in utf8 name gives error';
+        $utf8_name = "SHARP #";
+        utf8::upgrade($utf8_name);
+        eval "use utf8; q(W) =~ /\\N{$utf8_name}/";
+        ok $@ && $@ =~ /Invalid character/, 'Verify that ASCII symbol in utf8 name gives error';
+        $utf8_name = "A HOUSE \xF7 AGAINST ITSELF";
+        utf8::upgrade($utf8_name);
+        eval "use utf8; q(W) =~ /\\N{$utf8_name}/";
+        ok $@ && $@ =~ /Invalid character/, 'Verify that latin1 symbol in utf8 name gives error';
+        $utf8_name = "\x{664} HORSEMEN}";
+        eval "use utf8; q(W) =~ /\\N{$utf8_name}/";
+        ok $@ && $@ =~ /Invalid character/, 'Verify that leading above Latin1 digit in utf8 name gives error';
+        $utf8_name = "A \x{1F4A9} WOULD SMELL AS SWEET}";
+        eval "use utf8; q(W) =~ /\\N{$utf8_name}/";
+        ok $@ && $@ =~ /Invalid character/, 'Verify that above Latin1 symbol in utf8 name gives error';
+
         undef $w;
         $name = "A\x{D1}O";
         eval "q(W) =~ /\\N{$name}/";
@@ -1082,7 +1084,6 @@ sub run_tests {
 
     }
 
-
     {
         use charnames ':full';
 
@@ -1100,7 +1101,6 @@ sub run_tests {
         ok "\0" =~ /^\N{NULL}$/, 'Verify that \N{NULL} works; is not confused with an error';
     }
 
-
     {
         our $brackets;
         $brackets = qr{
@@ -1125,19 +1125,18 @@ sub run_tests {
             local $_ = '<<<stuff1>and<stuff2>><<<<right>>>>>';
             ok /^(<((?:(?>[^<>]+)|(?1))*)>(?{push @stack, $2 }))$/,
                 "Recursion matches";
-            iseq @stack, @expect, "Right amount of matches"
+            is(@stack, @expect, "Right amount of matches")
                  or skip "Won't test individual results as count isn't equal",
                           0 + @expect;
             my $idx = 0;
             foreach my $expect (@expect) {
-                iseq $stack [$idx], $expect,
-                    "Expecting '$expect' at stack pos #$idx";
+                is($stack [$idx], $expect,
+                  "Expecting '$expect' at stack pos #$idx");
                 $idx ++;
             }
         }
     }
 
-
     {
         my $s = '123453456';
         $s =~ s/(?<digits>\d+)\k<digits>/$+{digits}/;
@@ -1147,7 +1146,6 @@ sub run_tests {
         ok $s eq '123456', 'Named capture (single quotes) s///';
     }
 
-
     {
         my @ary = (
             pack('U', 0x00F1),            # n-tilde
@@ -1186,7 +1184,7 @@ sub run_tests {
             }
         }
         my @expect = qw (A:0:1 A:1:3 B:0:2 B:1:4);
-        iseq "@res", "@expect", "Check %-";
+        is("@res", "@expect", "Check %-");
         eval'
             no warnings "uninitialized";
             print for $- {this_key_doesnt_exist};
@@ -1214,90 +1212,85 @@ sub run_tests {
     {   # Test the (*PRUNE) pattern
         our $count = 0;
         'aaab' =~ /a+b?(?{$count++})(*FAIL)/;
-        iseq $count, 9, "Expect 9 for no (*PRUNE)";
+        is($count, 9, "Expect 9 for no (*PRUNE)");
         $count = 0;
         'aaab' =~ /a+b?(*PRUNE)(?{$count++})(*FAIL)/;
-        iseq $count, 3, "Expect 3 with (*PRUNE)";
+        is($count, 3, "Expect 3 with (*PRUNE)");
         local $_ = 'aaab';
         $count = 0;
         1 while /.(*PRUNE)(?{$count++})(*FAIL)/g;
-        iseq $count, 4, "/.(*PRUNE)/";
+        is($count, 4, "/.(*PRUNE)/");
         $count = 0;
         'aaab' =~ /a+b?(??{'(*PRUNE)'})(?{$count++})(*FAIL)/;
-        iseq $count, 3, "Expect 3 with (*PRUNE)";
+        is($count, 3, "Expect 3 with (*PRUNE)");
         local $_ = 'aaab';
         $count = 0;
         1 while /.(??{'(*PRUNE)'})(?{$count++})(*FAIL)/g;
-        iseq $count, 4, "/.(*PRUNE)/";
+        is($count, 4, "/.(*PRUNE)/");
     }
 
-
     {   # Test the (*SKIP) pattern
         our $count = 0;
         'aaab' =~ /a+b?(*SKIP)(?{$count++})(*FAIL)/;
-        iseq $count, 1, "Expect 1 with (*SKIP)";
+        is($count, 1, "Expect 1 with (*SKIP)");
         local $_ = 'aaab';
         $count = 0;
         1 while /.(*SKIP)(?{$count++})(*FAIL)/g;
-        iseq $count, 4, "/.(*SKIP)/";
+        is($count, 4, "/.(*SKIP)/");
         $_ = 'aaabaaab';
         $count = 0;
         our @res = ();
         1 while /(a+b?)(*SKIP)(?{$count++; push @res,$1})(*FAIL)/g;
-        iseq $count, 2, "Expect 2 with (*SKIP)";
-        iseq "@res", "aaab aaab", "Adjacent (*SKIP) works as expected";
+        is($count, 2, "Expect 2 with (*SKIP)");
+        is("@res", "aaab aaab", "Adjacent (*SKIP) works as expected");
     }
 
-
     {   # Test the (*SKIP) pattern
         our $count = 0;
         'aaab' =~ /a+b?(*MARK:foo)(*SKIP)(?{$count++})(*FAIL)/;
-        iseq $count, 1, "Expect 1 with (*SKIP)";
+        is($count, 1, "Expect 1 with (*SKIP)");
         local $_ = 'aaab';
         $count = 0;
         1 while /.(*MARK:foo)(*SKIP)(?{$count++})(*FAIL)/g;
-        iseq $count, 4, "/.(*SKIP)/";
+        is($count, 4, "/.(*SKIP)/");
         $_ = 'aaabaaab';
         $count = 0;
         our @res = ();
         1 while /(a+b?)(*MARK:foo)(*SKIP)(?{$count++; push @res,$1})(*FAIL)/g;
-        iseq $count, 2, "Expect 2 with (*SKIP)";
-        iseq "@res", "aaab aaab", "Adjacent (*SKIP) works as expected";
+        is($count, 2, "Expect 2 with (*SKIP)");
+        is("@res", "aaab aaab", "Adjacent (*SKIP) works as expected");
     }
 
-
     {   # Test the (*SKIP) pattern
         our $count = 0;
         'aaab' =~ /a*(*MARK:a)b?(*MARK:b)(*SKIP:a)(?{$count++})(*FAIL)/;
-        iseq $count, 3, "Expect 3 with *MARK:a)b?(*MARK:b)(*SKIP:a)";
+        is($count, 3, "Expect 3 with *MARK:a)b?(*MARK:b)(*SKIP:a)");
         local $_ = 'aaabaaab';
         $count = 0;
         our @res = ();
         1 while
         /(a*(*MARK:a)b?)(*MARK:x)(*SKIP:a)(?{$count++; push @res,$1})(*FAIL)/g;
-        iseq $count, 5, "Expect 5 with (*MARK:a)b?)(*MARK:x)(*SKIP:a)";
-        iseq "@res", "aaab b aaab b ",
-             "Adjacent (*MARK:a)b?)(*MARK:x)(*SKIP:a) works as expected";
+        is($count, 5, "Expect 5 with (*MARK:a)b?)(*MARK:x)(*SKIP:a)");
+        is("@res", "aaab b aaab b ",
+          "Adjacent (*MARK:a)b?)(*MARK:x)(*SKIP:a) works as expected");
     }
 
-
     {   # Test the (*COMMIT) pattern
         our $count = 0;
         'aaabaaab' =~ /a+b?(*COMMIT)(?{$count++})(*FAIL)/;
-        iseq $count, 1, "Expect 1 with (*COMMIT)";
+        is($count, 1, "Expect 1 with (*COMMIT)");
         local $_ = 'aaab';
         $count = 0;
         1 while /.(*COMMIT)(?{$count++})(*FAIL)/g;
-        iseq $count, 1, "/.(*COMMIT)/";
+        is($count, 1, "/.(*COMMIT)/");
         $_ = 'aaabaaab';
         $count = 0;
         our @res = ();
         1 while /(a+b?)(*COMMIT)(?{$count++; push @res,$1})(*FAIL)/g;
-        iseq $count, 1, "Expect 1 with (*COMMIT)";
-        iseq "@res", "aaab", "Adjacent (*COMMIT) works as expected";
+        is($count, 1, "Expect 1 with (*COMMIT)");
+        is("@res", "aaab", "Adjacent (*COMMIT) works as expected");
     }
 
-
     {
         # Test named commits and the $REGERROR var
         our $REGERROR;
@@ -1307,15 +1300,14 @@ sub run_tests {
                          "(*COMMIT$name)") {
                 for my $suffix ('(*FAIL)', '') {
                     'aaaab' =~ /a+b$pat$suffix/;
-                    iseq $REGERROR,
+                    is($REGERROR,
                          ($suffix ? ($name ? 'foo' : "1") : ""),
-                        "Test $pat and \$REGERROR $suffix";
+                        "Test $pat and \$REGERROR $suffix");
                 }
             }
         }
     }
 
-
     {
         # Test named commits and the $REGERROR var
         package Fnorble;
@@ -1326,24 +1318,23 @@ sub run_tests {
                          "(*COMMIT$name)") {
                 for my $suffix ('(*FAIL)','') {
                     'aaaab' =~ /a+b$pat$suffix/;
-                  ::iseq $REGERROR,
+                   ::is($REGERROR,
                          ($suffix ? ($name ? 'foo' : "1") : ""),
-                        "Test $pat and \$REGERROR $suffix";
+                        "Test $pat and \$REGERROR $suffix");
                 }
             }
         }
     }
 
-
     {
         # Test named commits and the $REGERROR var
-        local $Message = '$REGERROR';
+       my $message = '$REGERROR';
         our $REGERROR;
         for my $word (qw (bar baz bop)) {
             $REGERROR = "";
             "aaaaa$word" =~
               /a+(?:bar(*COMMIT:bar)|baz(*COMMIT:baz)|bop(*COMMIT:bop))(*FAIL)/;
-            iseq $REGERROR, $word;
+            is($REGERROR, $word, $message);
         }
     }
 
@@ -1354,17 +1345,16 @@ sub run_tests {
         }
     }
 
-
     {
-        local $Message = "Relative Recursion";
+        my $message = "Relative Recursion";
         my $parens = qr/(\((?:[^()]++|(?-1))*+\))/;
         local $_ = 'foo((2*3)+4-3) + bar(2*(3+4)-1*(2-3))';
         my ($all, $one, $two) = ('', '', '');
-        ok m/foo $parens \s* \+ \s* bar $parens/x;
-        iseq $1, '((2*3)+4-3)';
-        iseq $2, '(2*(3+4)-1*(2-3))';
-        iseq $&, 'foo((2*3)+4-3) + bar(2*(3+4)-1*(2-3))';
-        iseq $&, $_;
+        ok(m/foo $parens \s* \+ \s* bar $parens/x, $message);
+        is($1, '((2*3)+4-3)', $message);
+        is($2, '(2*(3+4)-1*(2-3))', $message);
+        is($&, 'foo((2*3)+4-3) + bar(2*(3+4)-1*(2-3))', $message);
+        is($&, $_, $message);
     }
 
     {
@@ -1372,11 +1362,10 @@ sub run_tests {
         local $_ = join 'bar', $spaces, $spaces;
         our $count = 0;
         s/(?>\s+bar)(?{$count++})//g;
-        iseq $_, $spaces, "SUSPEND final string";
-        iseq $count, 1, "Optimiser should have prevented more than one match";
+        is($_, $spaces, "SUSPEND final string");
+        is($count, 1, "Optimiser should have prevented more than one match");
     }
 
-
     {
         # From Message-ID: <877ixs6oa6.fsf@k75.linux.bogus>
         my $dow_name = "nada";
@@ -1385,60 +1374,56 @@ sub run_tests {
         my $time_string = "D\x{e9} C\x{e9}adaoin";
         eval $parser;
         ok !$@, "Test Eval worked";
-        iseq $dow_name, $time_string, "UTF-8 trie common prefix extraction";
+        is($dow_name, $time_string, "UTF-8 trie common prefix extraction");
     }
 
-
     {
         my $v;
         ($v = 'bar') =~ /(\w+)/g;
         $v = 'foo';
-        iseq "$1", 'bar', '$1 is safe after /g - may fail due ' .
-                          'to specialized config in pp_hot.c'
+        is("$1", 'bar',
+          '$1 is safe after /g - may fail due to specialized config in pp_hot.c');
     }
 
-
     {
-        local $Message = "http://nntp.perl.org/group/perl.perl5.porters/118663";
+        my $message = "http://nntp.perl.org/group/perl.perl5.porters/118663";
         my $qr_barR1 = qr/(bar)\g-1/;
-        ok "foobarbarxyz" =~ $qr_barR1;
-        ok "foobarbarxyz" =~ qr/foo${qr_barR1}xyz/;
-        ok "foobarbarxyz" =~ qr/(foo)${qr_barR1}xyz/;
-        ok "foobarbarxyz" =~ qr/(foo)(bar)\g{-1}xyz/;
-        ok "foobarbarxyz" =~ qr/(foo${qr_barR1})xyz/;
-        ok "foobarbarxyz" =~ qr/(foo(bar)\g{-1})xyz/;
+        like("foobarbarxyz", $qr_barR1, $message);
+        like("foobarbarxyz", qr/foo${qr_barR1}xyz/, $message);
+        like("foobarbarxyz", qr/(foo)${qr_barR1}xyz/, $message);
+        like("foobarbarxyz", qr/(foo)(bar)\g{-1}xyz/, $message);
+        like("foobarbarxyz", qr/(foo${qr_barR1})xyz/, $message);
+        like("foobarbarxyz", qr/(foo(bar)\g{-1})xyz/, $message);
     }
 
     {
-        local $Message = '$REGMARK';
+        my $message = '$REGMARK';
         our @r = ();
         our ($REGMARK, $REGERROR);
-        ok 'foofoo' =~ /foo (*MARK:foo) (?{push @r,$REGMARK}) /x;
-        iseq "@r","foo";
-        iseq $REGMARK, "foo";
-        ok 'foofoo' !~ /foo (*MARK:foo) (*FAIL) /x;
-        ok !$REGMARK;
-        iseq $REGERROR, 'foo';
+        like('foofoo', qr/foo (*MARK:foo) (?{push @r,$REGMARK}) /x, $message);
+        is("@r","foo", $message);
+        is($REGMARK, "foo", $message);
+        unlike('foofoo', qr/foo (*MARK:foo) (*FAIL) /x, $message);
+        is($REGMARK, '', $message);
+        is($REGERROR, 'foo', $message);
     }
 
-
     {
-        local $Message = '\K test';
+        my $message = '\K test';
         my $x;
         $x = "abc.def.ghi.jkl";
         $x =~ s/.*\K\..*//;
-        iseq $x, "abc.def.ghi";
+        is($x, "abc.def.ghi", $message);
 
         $x = "one two three four";
         $x =~ s/o+ \Kthree//g;
-        iseq $x, "one two  four";
+        is($x, "one two  four", $message);
 
         $x = "abcde";
         $x =~ s/(.)\K/$1/g;
-        iseq $x, "aabbccddee";
+        is($x, "aabbccddee", $message);
     }
 
-
     {
         sub kt {
             return '4' if $_[0] eq '09028623';
@@ -1448,14 +1433,13 @@ sub run_tests {
         our $grabit = qr/ ([0-6][0-9]{7}) (??{ kt $1 }) [890] /x;
         $re = qr/^ ( (??{ $grabit }) ) $ /x;
         my @res = '0902862349' =~ $re;
-        iseq join ("-", @res), "0902862349",
-            'PL_curpm is set properly on nested eval';
+        is(join ("-", @res), "0902862349",
+          'PL_curpm is set properly on nested eval');
 
         our $qr = qr/ (o) (??{ $1 }) /x;
         ok 'boob'=~/( b (??{ $qr }) b )/x && 1, "PL_curpm, nested eval";
     }
 
-
     {
         use charnames ":full";
         ok "\N{ROMAN NUMERAL ONE}" =~ /\p{Alphabetic}/, "I =~ Alphabetic";
@@ -1465,11 +1449,56 @@ sub run_tests {
         ok "\N{ROMAN NUMERAL ONE}" =~ /\p{IDContinue}/, "I =~ ID_Continue";
         ok "\N{SMALL ROMAN NUMERAL ONE}" =~ /\p{Alphabetic}/, "i =~ Alphabetic";
         ok "\N{SMALL ROMAN NUMERAL ONE}" !~ /\p{Uppercase}/,  "i !~ Uppercase";
+        ok "\N{SMALL ROMAN NUMERAL ONE}" =~ /\p{Uppercase}/i,  "i =~ Uppercase under /i";
+        ok "\N{SMALL ROMAN NUMERAL ONE}" !~ /\p{Titlecase}/,  "i !~ Titlecase";
+        ok "\N{SMALL ROMAN NUMERAL ONE}" =~ /\p{Titlecase}/i,  "i =~ Titlecase under /i";
+        ok "\N{ROMAN NUMERAL ONE}" =~ /\p{Lowercase}/i,  "I =~ Lowercase under /i";
+
         ok "\N{SMALL ROMAN NUMERAL ONE}" =~ /\p{Lowercase}/,  "i =~ Lowercase";
         ok "\N{SMALL ROMAN NUMERAL ONE}" =~ /\p{IDStart}/,    "i =~ ID_Start";
         ok "\N{SMALL ROMAN NUMERAL ONE}" =~ /\p{IDContinue}/, "i =~ ID_Continue"
     }
 
+    {   # More checking that /i works on the few properties that it makes a
+        # difference.  Uppercase, Lowercase, and Titlecase were done in the
+        # block above
+        ok "A" =~ /\p{PosixUpper}/,  "A =~ PosixUpper";
+        ok "A" =~ /\p{PosixUpper}/i,  "A =~ PosixUpper under /i";
+        ok "A" !~ /\p{PosixLower}/,  "A !~ PosixLower";
+        ok "A" =~ /\p{PosixLower}/i,  "A =~ PosixLower under /i";
+        ok "a" !~ /\p{PosixUpper}/,  "a !~ PosixUpper";
+        ok "a" =~ /\p{PosixUpper}/i,  "a =~ PosixUpper under /i";
+        ok "a" =~ /\p{PosixLower}/,  "a =~ PosixLower";
+        ok "a" =~ /\p{PosixLower}/i,  "a =~ PosixLower under /i";
+
+        ok "\xC0" =~ /\p{XPosixUpper}/,  "\\xC0 =~ XPosixUpper";
+        ok "\xC0" =~ /\p{XPosixUpper}/i,  "\\xC0 =~ XPosixUpper under /i";
+        ok "\xC0" !~ /\p{XPosixLower}/,  "\\xC0 !~ XPosixLower";
+        ok "\xC0" =~ /\p{XPosixLower}/i,  "\\xC0 =~ XPosixLower under /i";
+        ok "\xE0" !~ /\p{XPosixUpper}/,  "\\xE0 !~ XPosixUpper";
+        ok "\xE0" =~ /\p{XPosixUpper}/i,  "\\xE0 =~ XPosixUpper under /i";
+        ok "\xE0" =~ /\p{XPosixLower}/,  "\\xE0 =~ XPosixLower";
+        ok "\xE0" =~ /\p{XPosixLower}/i,  "\\xE0 =~ XPosixLower under /i";
+
+        ok "\xC0" =~ /\p{UppercaseLetter}/,  "\\xC0 =~ UppercaseLetter";
+        ok "\xC0" =~ /\p{UppercaseLetter}/i,  "\\xC0 =~ UppercaseLetter under /i";
+        ok "\xC0" !~ /\p{LowercaseLetter}/,  "\\xC0 !~ LowercaseLetter";
+        ok "\xC0" =~ /\p{LowercaseLetter}/i,  "\\xC0 =~ LowercaseLetter under /i";
+        ok "\xC0" !~ /\p{TitlecaseLetter}/,  "\\xC0 !~ TitlecaseLetter";
+        ok "\xC0" =~ /\p{TitlecaseLetter}/i,  "\\xC0 =~ TitlecaseLetter under /i";
+        ok "\xE0" !~ /\p{UppercaseLetter}/,  "\\xE0 !~ UppercaseLetter";
+        ok "\xE0" =~ /\p{UppercaseLetter}/i,  "\\xE0 =~ UppercaseLetter under /i";
+        ok "\xE0" =~ /\p{LowercaseLetter}/,  "\\xE0 =~ LowercaseLetter";
+        ok "\xE0" =~ /\p{LowercaseLetter}/i,  "\\xE0 =~ LowercaseLetter under /i";
+        ok "\xE0" !~ /\p{TitlecaseLetter}/,  "\\xE0 !~ TitlecaseLetter";
+        ok "\xE0" =~ /\p{TitlecaseLetter}/i,  "\\xE0 =~ TitlecaseLetter under /i";
+        ok "\x{1C5}" !~ /\p{UppercaseLetter}/,  "\\x{1C5} !~ UppercaseLetter";
+        ok "\x{1C5}" =~ /\p{UppercaseLetter}/i,  "\\x{1C5} =~ UppercaseLetter under /i";
+        ok "\x{1C5}" !~ /\p{LowercaseLetter}/,  "\\x{1C5} !~ LowercaseLetter";
+        ok "\x{1C5}" =~ /\p{LowercaseLetter}/i,  "\\x{1C5} =~ LowercaseLetter under /i";
+        ok "\x{1C5}" =~ /\p{TitlecaseLetter}/,  "\\x{1C5} =~ TitlecaseLetter";
+        ok "\x{1C5}" =~ /\p{TitlecaseLetter}/i,  "\\x{1C5} =~ TitlecaseLetter under /i";
+    }
 
     {
         # requirement of Unicode Technical Standard #18, 1.7 Code Points
@@ -1482,65 +1511,60 @@ sub run_tests {
         }
     }
 
-
     {
         my $res="";
 
         if ('1' =~ /(?|(?<digit>1)|(?<digit>2))/) {
             $res = "@{$- {digit}}";
         }
-        iseq $res, "1",
-            "Check that (?|...) doesnt cause dupe entries in the names array";
+        is($res, "1",
+          "Check that (?|...) doesnt cause dupe entries in the names array");
 
         $res = "";
         if ('11' =~ /(?|(?<digit>1)|(?<digit>2))(?&digit)/) {
             $res = "@{$- {digit}}";
         }
-        iseq $res, "1", "Check that (?&..) to a buffer inside " .
-                        "a (?|...) goes to the leftmost";
+        is($res, "1",
+          "Check that (?&..) to a buffer inside a (?|...) goes to the leftmost");
     }
 
-
     {
         use warnings;
-        local $Message = "ASCII pattern that really is UTF-8";
+        my $message = "ASCII pattern that really is UTF-8";
         my @w;
         local $SIG {__WARN__} = sub {push @w, "@_"};
         my $c = qq (\x{DF});
-        ok $c =~ /${c}|\x{100}/;
-        ok @w == 0;
+        like($c, qr/${c}|\x{100}/, $message);
+        is("@w", '', $message);
     }
 
-
     {
-        local $Message = "Corruption of match results of qr// across scopes";
+        my $message = "Corruption of match results of qr// across scopes";
         my $qr = qr/(fo+)(ba+r)/;
         'foobar' =~ /$qr/;
-        iseq "$1$2", "foobar";
+        is("$1$2", "foobar", $message);
         {
             'foooooobaaaaar' =~ /$qr/;
-            iseq "$1$2", 'foooooobaaaaar';
+            is("$1$2", 'foooooobaaaaar', $message);
         }
-        iseq "$1$2", "foobar";
+        is("$1$2", "foobar", $message);
     }
 
-
     {
-        local $Message = "HORIZWS";
+        my $message = "HORIZWS";
         local $_ = "\t \r\n \n \t".chr(11)."\n";
         s/\H/H/g;
         s/\h/h/g;
-        iseq $_, "hhHHhHhhHH";
+        is($_, "hhHHhHhhHH", $message);
         $_ = "\t \r\n \n \t" . chr (11) . "\n";
         utf8::upgrade ($_);
         s/\H/H/g;
         s/\h/h/g;
-        iseq $_, "hhHHhHhhHH";
+        is($_, "hhHHhHhhHH", $message);
     }
 
-
     {
-        local $Message = "Various whitespace special patterns";
+        # Various whitespace special patterns
         my @h = map {chr $_}   0x09,   0x20,   0xa0, 0x1680, 0x180e, 0x2000,
                              0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006,
                              0x2007, 0x2008, 0x2009, 0x200a, 0x202f, 0x205f,
@@ -1554,19 +1578,21 @@ sub run_tests {
             my $ary = shift @$t;
             foreach my $pat (@$t) {
                 foreach my $str (@$ary) {
-                    ok $str =~ /($pat)/, $pat;
-                    iseq $1, $str, $pat;
+                    my $temp_str = $str;
+                    $temp_str = display($temp_str);
+                    ok $str =~ /($pat)/, $temp_str . " =~ /($pat)";
+                    my $temp_1 = $1;
+                    is($1, $str, "\$1='" . display($temp_1) . "' eq '" . $temp_str . "' after ($pat)");
                     utf8::upgrade ($str);
-                    ok $str =~ /($pat)/, "Upgraded string - $pat";
-                    iseq $1, $str, "Upgraded string - $pat";
+                    ok $str =~ /($pat)/, "Upgraded " . $temp_str . " =~ /($pat)/";
+                    is($1, $str, "\$1='" . display($temp_1) . "' eq '" . $temp_str . "'(upgraded) after ($pat)");
                 }
             }
         }
     }
 
-
     {
-        local $Message = "Check that \\xDF match properly in its various forms";
+        # Check that \\xDF match properly in its various forms
         # Test that \xDF matches properly. this is pretty hacky stuff,
         # but its actually needed. The malarky with '-' is to prevent
         # compilation caching from playing any role in the test.
@@ -1602,9 +1628,8 @@ sub run_tests {
         }
     }
 
-
     {
-        local $Message = "BBC(Bleadperl Breaks CPAN) Today: String::Multibyte";
+        my $message = "BBC(Bleadperl Breaks CPAN) Today: String::Multibyte";
         my $re  = qr/(?:[\x00-\xFF]{4})/;
         my $hyp = "\0\0\0-";
         my $esc = "\0\0\0\\";
@@ -1612,84 +1637,95 @@ sub run_tests {
         my $str = "$esc$hyp$hyp$esc$esc";
         my @a = ($str =~ /\G(?:\Q$esc$esc\E|\Q$esc$hyp\E|$re)/g);
 
-        iseq @a,3;
+        is(@a,3, $message);
         local $" = "=";
-        iseq "@a","$esc$hyp=$hyp=$esc$esc";
+        is("@a","$esc$hyp=$hyp=$esc$esc", $message);
     }
 
-
     {
         # Test for keys in %+ and %-
-        local $Message = 'Test keys in %+ and %-';
-        no warnings 'uninitialized';
+        my $message = 'Test keys in %+ and %-';
+        no warnings 'uninitialized', 'deprecated';
         my $_ = "abcdef";
         /(?<foo>a)|(?<foo>b)/;
-        iseq ((join ",", sort keys %+), "foo");
-        iseq ((join ",", sort keys %-), "foo");
-        iseq ((join ",", sort values %+), "a");
-        iseq ((join ",", sort map "@$_", values %-), "a ");
+        is((join ",", sort keys %+), "foo", $message);
+        is((join ",", sort keys %-), "foo", $message);
+        is((join ",", sort values %+), "a", $message);
+        is((join ",", sort map "@$_", values %-), "a ", $message);
         /(?<bar>a)(?<bar>b)(?<quux>.)/;
-        iseq ((join ",", sort keys %+), "bar,quux");
-        iseq ((join ",", sort keys %-), "bar,quux");
-        iseq ((join ",", sort values %+), "a,c"); # leftmost
-        iseq ((join ",", sort map "@$_", values %-), "a b,c");
+        is((join ",", sort keys %+), "bar,quux", $message);
+        is((join ",", sort keys %-), "bar,quux", $message);
+        is((join ",", sort values %+), "a,c", $message); # leftmost
+        is((join ",", sort map "@$_", values %-), "a b,c", $message);
         /(?<un>a)(?<deux>c)?/; # second buffer won't capture
-        iseq ((join ",", sort keys %+), "un");
-        iseq ((join ",", sort keys %-), "deux,un");
-        iseq ((join ",", sort values %+), "a");
-        iseq ((join ",", sort map "@$_", values %-), ",a");
+        is((join ",", sort keys %+), "un", $message);
+        is((join ",", sort keys %-), "deux,un", $message);
+        is((join ",", sort values %+), "a", $message);
+        is((join ",", sort map "@$_", values %-), ",a", $message);
     }
 
-
     {
         # length() on captures, the numbered ones end up in Perl_magic_len
+        no warnings 'deprecated';
         my $_ = "aoeu \xe6var ook";
         /^ \w+ \s (?<eek>\S+)/x;
 
-        iseq length ($`),      0, q[length $`];
-        iseq length ($'),      4, q[length $'];
-        iseq length ($&),      9, q[length $&];
-        iseq length ($1),      4, q[length $1];
-        iseq length ($+{eek}), 4, q[length $+{eek} == length $1];
+        is(length $`,      0, q[length $`]);
+        is(length $',      4, q[length $']);
+        is(length $&,      9, q[length $&]);
+        is(length $1,      4, q[length $1]);
+        is(length $+{eek}, 4, q[length $+{eek} == length $1]);
     }
 
-
     {
         my $ok = -1;
 
         $ok = exists ($-{x}) ? 1 : 0 if 'bar' =~ /(?<x>foo)|bar/;
-        iseq $ok, 1, '$-{x} exists after "bar"=~/(?<x>foo)|bar/';
-        iseq scalar (%+), 0, 'scalar %+ == 0 after "bar"=~/(?<x>foo)|bar/';
-        iseq scalar (%-), 1, 'scalar %- == 1 after "bar"=~/(?<x>foo)|bar/';
+        is($ok, 1, '$-{x} exists after "bar"=~/(?<x>foo)|bar/');
+        is(scalar (%+), 0, 'scalar %+ == 0 after "bar"=~/(?<x>foo)|bar/');
+        is(scalar (%-), 1, 'scalar %- == 1 after "bar"=~/(?<x>foo)|bar/');
 
         $ok = -1;
         $ok = exists ($+{x}) ? 1 : 0 if 'bar' =~ /(?<x>foo)|bar/;
-        iseq $ok, 0, '$+{x} not exists after "bar"=~/(?<x>foo)|bar/';
-        iseq scalar (%+), 0, 'scalar %+ == 0 after "bar"=~/(?<x>foo)|bar/';
-        iseq scalar (%-), 1, 'scalar %- == 1 after "bar"=~/(?<x>foo)|bar/';
+        is($ok, 0, '$+{x} not exists after "bar"=~/(?<x>foo)|bar/');
+        is(scalar (%+), 0, 'scalar %+ == 0 after "bar"=~/(?<x>foo)|bar/');
+        is(scalar (%-), 1, 'scalar %- == 1 after "bar"=~/(?<x>foo)|bar/');
 
         $ok = -1;
         $ok = exists ($-{x}) ? 1 : 0 if 'foo' =~ /(?<x>foo)|bar/;
-        iseq $ok, 1, '$-{x} exists after "foo"=~/(?<x>foo)|bar/';
-        iseq scalar (%+), 1, 'scalar %+ == 1 after "foo"=~/(?<x>foo)|bar/';
-        iseq scalar (%-), 1, 'scalar %- == 1 after "foo"=~/(?<x>foo)|bar/';
+        is($ok, 1, '$-{x} exists after "foo"=~/(?<x>foo)|bar/');
+        is(scalar (%+), 1, 'scalar %+ == 1 after "foo"=~/(?<x>foo)|bar/');
+        is(scalar (%-), 1, 'scalar %- == 1 after "foo"=~/(?<x>foo)|bar/');
 
         $ok = -1;
         $ok = exists ($+{x}) ? 1 : 0 if 'foo'=~/(?<x>foo)|bar/;
-        iseq $ok, 1, '$+{x} exists after "foo"=~/(?<x>foo)|bar/';
+        is($ok, 1, '$+{x} exists after "foo"=~/(?<x>foo)|bar/');
     }
 
-
     {
         local $_;
         ($_ = 'abc') =~ /(abc)/g;
         $_ = '123';
-        iseq "$1", 'abc', "/g leads to unsafe match vars: $1";
-    }
+        is("$1", 'abc', "/g leads to unsafe match vars: $1");
 
+        fresh_perl_is(<<'EOP', ">abc<\n", {}, 'mention $&');
+$&;
+my $x; 
+($x='abc')=~/(abc)/g; 
+$x='123'; 
+print ">$1<\n";
+EOP
+
+        fresh_perl_is(<<'EOP', ">abc<\n", {}, 'no mention of $&');
+my $x; 
+($x='abc')=~/(abc)/g; 
+$x='123'; 
+print ">$1<\n";
+EOP
+    }
 
     {
-        local $Message = 'Message-ID: <20070818091501.7eff4831@r2d2>';
+        # Message-ID: <20070818091501.7eff4831@r2d2>
         my $str = "";
         for (0 .. 5) {
             my @x;
@@ -1697,7 +1733,7 @@ sub run_tests {
             'a' =~ /(a|)/;
             push @x, 1;
         }
-        iseq length ($str), 0, "Trie scope error, string should be empty";
+        is(length $str, 0, "Trie scope error, string should be empty");
         $str = "";
         my @foo = ('a') x 5;
         for (@foo) {
@@ -1705,10 +1741,9 @@ sub run_tests {
             $str .= "@bar";
             s/a|/push @bar, 1/e;
         }
-        iseq length ($str), 0, "Trie scope error, string should be empty";
+        is(length $str, 0, "Trie scope error, string should be empty");
     }
 
-
     {
 # more TRIE/AHOCORASICK problems with mixed utf8 / latin-1 and case folding
     for my $chr (160 .. 255) {
@@ -1722,10 +1757,9 @@ sub run_tests {
     {
         our $a = 3; "" =~ /(??{ $a })/;
         our $b = $a;
-        iseq $b, $a, "Copy of scalar used for postponed subexpression";
+        is($b, $a, "Copy of scalar used for postponed subexpression");
     }
 
-
     {
         our @ctl_n = ();
         our @plus = ();
@@ -1744,31 +1778,30 @@ sub run_tests {
 
         my $match = '<bla><blubb></blubb></bla>' =~ m/^$nested_tags$/;
         ok $match, 'nested construct matches';
-        iseq "@ctl_n", "bla blubb", '$^N inside of (?{}) works as expected';
-        iseq "@plus",  "bla blubb", '$+  inside of (?{}) works as expected';
+        is("@ctl_n", "bla blubb", '$^N inside of (?{}) works as expected');
+        is("@plus",  "bla blubb", '$+  inside of (?{}) works as expected');
     }
 
-
     SKIP: {
         # XXX: This set of tests is essentially broken, POSIX character classes
         # should not have differing definitions under Unicode.
         # There are property names for that.
-        skip "Tests assume ASCII", 4 unless $IS_ASCII;
+        skip "Tests assume ASCII", 4 unless $::IS_ASCII;
 
         my @notIsPunct = grep {/[[:punct:]]/ and not /\p{IsPunct}/}
                                 map {chr} 0x20 .. 0x7f;
-        iseq join ('', @notIsPunct), '$+<=>^`|~',
-            '[:punct:] disagrees with IsPunct on Symbols';
+        is(join ('', @notIsPunct), '$+<=>^`|~',
+          '[:punct:] disagrees with IsPunct on Symbols');
 
         my @isPrint = grep {not /[[:print:]]/ and /\p{IsPrint}/}
                             map {chr} 0 .. 0x1f, 0x7f .. 0x9f;
-        iseq join ('', @isPrint), "",
-            'IsPrint agrees with [:print:] on control characters';
+        is(join ('', @isPrint), "",
+          'IsPrint agrees with [:print:] on control characters');
 
         my @isPunct = grep {/[[:punct:]]/ != /\p{IsPunct}/}
                             map {chr} 0x80 .. 0xff;
-        iseq join ('', @isPunct), "\xa1\xab\xb7\xbb\xbf",    # ¡ « · » ¿
-            'IsPunct disagrees with [:punct:] outside ASCII';
+        is(join ('', @isPunct), "\xa1\xa7\xab\xb6\xb7\xbb\xbf",    # ¡ « · » ¿
+          'IsPunct disagrees with [:punct:] outside ASCII');
 
         my @isPunctLatin1 = eval q {
             use encoding 'latin1';
@@ -1777,11 +1810,10 @@ sub run_tests {
         skip "Eval failed ($@)", 1 if $@;
         skip "PERL_LEGACY_UNICODE_CHARCLASS_MAPPINGS set to 0", 1
               if !$ENV{PERL_TEST_LEGACY_POSIX_CC};
-        iseq join ('', @isPunctLatin1), '',
-            'IsPunct agrees with [:punct:] with explicit Latin1';
+        is(join ('', @isPunctLatin1), '',
+          'IsPunct agrees with [:punct:] with explicit Latin1');
     }
 
-
     {
        # Tests for [#perl 71942]
         our $count_a;
@@ -2065,21 +2097,85 @@ sub run_tests {
             my $match_a = ($re->[1] =~ $re->[2]) || 0;
             my $match_b = ($re->[1] =~ $re->[3]) || 0;
 
-            iseq($match_a, $re->[0], "match a " . ($re->[0] ? "succeeded" : "failed") . " ($c)");
-            iseq($match_b, $re->[0], "match b " . ($re->[0] ? "succeeded" : "failed") . " ($c)");
-            iseq($count_a, $re->[4], "count a ($c)");
-            iseq($count_b, $re->[4], "count b ($c)");
+            is($match_a, $re->[0], "match a " . ($re->[0] ? "succeeded" : "failed") . " ($c)");
+            is($match_b, $re->[0], "match b " . ($re->[0] ? "succeeded" : "failed") . " ($c)");
+            is($count_a, $re->[4], "count a ($c)");
+            is($count_b, $re->[4], "count b ($c)");
         }
     }
 
     {   # Bleadperl v5.13.8-292-gf56b639 breaks NEZUMI/Unicode-LineBreak-1.011
         # \xdf in lookbehind failed to compile as is multi-char fold
-        eval_ok 'qr{
+        my $message = "Lookbehind with \\xdf matchable compiles";
+        my $r = eval 'qr{
             (?u: (?<=^url:) |
                  (?<=[/]) (?=[^/]) |
                  (?<=[^-.]) (?=[-~.,_?\#%=&]) |
                  (?<=[=&]) (?=.)
-            )}iox', "Lookbehind with \\xdf matchable compiles";
+            )}iox';
+       is($@, '', $message);
+       object_ok($r, 'Regexp', $message);
+    }
+
+    # RT #82610
+    ok 'foo/file.fob' =~ m,^(?=[^\.])[^/]*/(?=[^\.])[^/]*\.fo[^/]$,;
+
+    {   # This was failing unless an explicit /d was added
+        my $p = qr/[\xE0_]/i;
+        utf8::upgrade($p);
+        like("\xC0", $p, "Verify \"\\xC0\" =~ /[\\xE0_]/i; pattern in utf8");
+    }
+
+    ok "x" =~ /\A(?>(?:(?:)A|B|C?x))\z/,
+        "Check TRIE does not overwrite EXACT following NOTHING at start - RT #111842";
+
+    {
+        my $single = ":";
+        my $upper = "\x{390}";  # Fold is 3 chars.
+        my $multi = CORE::fc($upper);
+
+        my $failed = 0;
+
+        # Try forcing a node to be split, with a multi-char fold at the
+        # boundary
+        for my $repeat (1 .. 300) {
+            my $string = $single x $repeat;
+            my $lhs = $string . $upper;
+            if ($lhs !~ m/$string$multi/i) {
+                $failed = $repeat;
+                last;
+            }
+        }
+        ok(! $failed, "Matched multi-char fold across EXACTFish node boundaries; if failed, was at count $failed");
+
+        $failed = 0;
+        for my $repeat (1 .. 300) {
+            my $string = $single x $repeat;
+            my $lhs = $string . "\N{LATIN SMALL LIGATURE FFI}";
+            if ($lhs !~ m/${string}ff\N{LATIN SMALL LETTER I}/i) {
+                $failed = $repeat;
+                last;
+            }
+        }
+        ok(! $failed, "Matched multi-char fold across EXACTFish node boundaries; if failed, was at count $failed");
+
+        $failed = 0;
+        for my $repeat (1 .. 300) {
+            my $string = $single x $repeat;
+            my $lhs = $string . "\N{LATIN SMALL LIGATURE FFL}";
+            if ($lhs !~ m/${string}ff\N{U+6c}/i) {
+                $failed = $repeat;
+                last;
+            }
+        }
+        ok(! $failed, "Matched multi-char fold across EXACTFish node boundaries; if failed, was at count $failed");
+    }
+
+    {
+        fresh_perl_is('print eval "\"\x{101}\" =~ /[[:lower:]]/", "\n"; print eval "\"\x{100}\" =~ /[[:lower:]]/i", "\n";',
+                      "1\n1",   # Both re's should match
+                      "",
+                      "get [:lower:] swash in first eval; test under /i in second");
     }
 
     #
@@ -2093,32 +2189,93 @@ sub run_tests {
     }
 
     {
-        local $Message = "Substitution with lookahead (possible segv)";
+        my $message = "Substitution with lookahead (possible segv)";
         $_ = "ns1ns1ns1";
         s/ns(?=\d)/ns_/g;
-        iseq $_, "ns_1ns_1ns_1";
+        is($_, "ns_1ns_1ns_1", $message);
         $_ = "ns1";
         s/ns(?=\d)/ns_/;
-        iseq $_, "ns_1";
+        is($_, "ns_1", $message);
         $_ = "123";
         s/(?=\d+)|(?<=\d)/!Bang!/g;
-        iseq $_, "!Bang!1!Bang!2!Bang!3!Bang!";
+        is($_, "!Bang!1!Bang!2!Bang!3!Bang!", $message);
     }
 
     { 
         # Earlier versions of Perl said this was fatal.
-        local $Message = "U+0FFFF shouldn't crash the regex engine";
+        my $message = "U+0FFFF shouldn't crash the regex engine";
         no warnings 'utf8';
         my $a = eval "chr(65535)";
         use warnings;
         my $warning_message;
         local $SIG{__WARN__} = sub { $warning_message = $_[0] };
         eval $a =~ /[a-z]/;
-        ok(1);  # If it didn't crash, it worked.
+        ok(1, $message);  # If it didn't crash, it worked.
+    }
+
+    TODO: {   # Was looping
+        todo_skip('Triggers thread clone SEGV. See #86550')
+         if $::running_as_thread && $::running_as_thread;
+        watchdog(10);   # Use a bigger value for busy systems
+        like("\x{00DF}", qr/[\x{1E9E}_]*/i, "\"\\x{00DF}\" =~ /[\\x{1E9E}_]*/i was looping");
+    }
+
+    {   # Bug #90536, caused failed assertion
+        unlike("s\N{U+DF}", qr/^\x{00DF}/i, "\"s\\N{U+DF}\", qr/^\\x{00DF}/i");
+    }
+
+    # User-defined Unicode properties to match above-Unicode code points
+    sub Is_32_Bit_Super { return "110000\tFFFFFFFF\n" }
+    sub Is_Portable_Super { return '!utf8::Any' }   # Matches beyond 32 bits
+
+    {   # Assertion was failing on on 64-bit platforms; just didn't work on 32.
+        no warnings qw(non_unicode portable);
+        use Config;
+
+        # We use 'ok' instead of 'like' because the warnings are lexically
+        # scoped, and want to turn them off, so have to do the match in this
+        # scope
+        if ($Config{uvsize} < 8) {
+            ok(chr(0xFFFF_FFFE) =~ /\p{Is_32_Bit_Super}/,
+                            "chr(0xFFFF_FFFE) can match a Unicode property");
+            ok(chr(0xFFFF_FFFF) =~ /\p{Is_32_Bit_Super}/,
+                            "chr(0xFFFF_FFFF) can match a Unicode property");
+            my $p = qr/^[\x{FFFF_FFFF}]$/;
+            ok(chr(0xFFFF_FFFF) =~ $p,
+                    "chr(0xFFFF_FFFF) can match itself in a [class]");
+            ok(chr(0xFFFF_FFFF) =~ $p, # Tests any caching
+                    "chr(0xFFFF_FFFF) can match itself in a [class] subsequently");
+        }
+        else {
+            no warnings 'overflow';
+            ok(chr(0xFFFF_FFFF_FFFF_FFFE) =~ qr/\p{Is_Portable_Super}/,
+                    "chr(0xFFFF_FFFF_FFFF_FFFE) can match a Unicode property");
+            ok(chr(0xFFFF_FFFF_FFFF_FFFF) =~ qr/^\p{Is_Portable_Super}$/,
+                    "chr(0xFFFF_FFFF_FFFF_FFFF) can match a Unicode property");
+
+            my $p = qr/^[\x{FFFF_FFFF_FFFF_FFFF}]$/;
+            ok(chr(0xFFFF_FFFF_FFFF_FFFF) =~ $p,
+                    "chr(0xFFFF_FFFF_FFFF_FFFF) can match itself in a [class]");
+            ok(chr(0xFFFF_FFFF_FFFF_FFFF) =~ $p, # Tests any caching
+                    "chr(0xFFFF_FFFF_FFFF_FFFF) can match itself in a [class] subsequently");
+
+            # This test is because something was declared as 32 bits, but
+            # should have been cast to 64; only a problem where
+            # sizeof(STRLEN) != sizeof(UV)
+            ok(chr(0xFFFF_FFFF_FFFF_FFFE) !~ qr/\p{Is_32_Bit_Super}/, "chr(0xFFFF_FFFF_FFFF_FFFE) shouldn't match a range ending in 0xFFFF_FFFF");
+        }
+    }
+
+    { # [perl #112530], the code below caused a panic
+        sub InFoo { "a\tb\n9\ta\n" }
+        like("\n", qr/\p{InFoo}/,
+                            "Overlapping ranges in user-defined properties");
     }
 
     # !!! NOTE that tests that aren't at all likely to crash perl should go
     # a ways above, above these last ones.
+
+    done_testing();
 } # End of sub run_tests
 
 1;