p4raw-id: //depot/perlio@14461
-use Test::More tests => 53;
use strict;
+use Test::More ();
+use Config;
+if ($Config{'useithreads'}) {
+ Test::More->import( tests => 53 );
+}
+else {
+ Test::More->import(skip_all => "no useithreads");
+}
+
my @array;
my %hash;
array(24,[],'Thing');
hash(24,[],'Thing');
+
import threads::shared;
share(\@array);