Skip the RV printing test under threads until fixed.
Jarkko Hietaniemi [Wed, 3 Oct 2001 13:23:32 +0000 (13:23 +0000)]
p4raw-id: //depot/perl@12317

ext/B/t/terse.t

index c586c09..336b7a7 100644 (file)
@@ -80,11 +80,15 @@ sub bar {
        $foo = "a string";
 }
 
-# Schwern's example of finding an RV
-my $path = join " ", map { qq["-I$_"] } @INC;
-my $redir = $^O eq 'MacOS' ? '' : "2>&1";
-my $items = qx{$^X $path "-MO=Terse" -le "print \\42" $redir};
-like( $items, qr/RV $hex \\42/, 'RV' );
+SKIP: {
+    use Config;
+    skip("- printing RVs not working under threads") if $Config{usethreads};
+    # Schwern's example of finding an RV
+    my $path = join " ", map { qq["-I$_"] } @INC;
+    my $redir = $^O eq 'MacOS' ? '' : "2>&1";
+    my $items = qx{$^X $path "-MO=Terse" -le "print \\42" $redir};
+    like( $items, qr/RV $hex \\42/, 'RV' );
+}
 
 package TieOut;