Message-ID: <
20080810203627.vj786wb688skc44w@horde.wizbit.be>
Date: Sun, 10 Aug 2008 20:36:27 +0200
p4raw-id: //depot/perl@34196
plan(5);
+# Fetching the list of files in two different ways and expecting them
+# to be the same is a race condition when tests are running in parallel.
+# So go somewhere quieter.
+my $chdir;
+if ($ENV{PERL_CORE} && -d 'uni') {
+ chdir 'uni';
+ $chdir++;
+};
+
$dot = new DirHandle ($^O eq 'MacOS' ? ':' : '.');
ok(defined($dot));
$dot->close;
$dot->rewind;
ok(!defined($dot->read));
+
+if ($chdir) {
+ chdir "..";
+}