Re: [ PATCH ] module test fest
[p5sagit/p5-mst-13.2.git] / ext / B / t / terse.t
index 336b7a7..33b2313 100644 (file)
@@ -78,11 +78,15 @@ sub bar {
 
        # make a PV
        $foo = "a string";
+
+       # make an OP_SUBSTCONT
+       $foo =~ s/(a)/$1/;
 }
 
 SKIP: {
     use Config;
-    skip("- printing RVs not working under threads") if $Config{usethreads};
+    skip("- B::Terse won't grok RVs under ithreads yet", 1)
+       if $Config{useithreads};
     # Schwern's example of finding an RV
     my $path = join " ", map { qq["-I$_"] } @INC;
     my $redir = $^O eq 'MacOS' ? '' : "2>&1";