This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Get t/uni/cache.t working under minitest
[perl5.git] / t / op / sysio.t
index d0f71ae..25d7197 100644 (file)
@@ -14,8 +14,7 @@ $reopen = ($^O eq 'VMS' ||
            $^O eq 'os2' ||
            $^O eq 'MSWin32' ||
            $^O eq 'NetWare' ||
-           $^O eq 'dos' ||
-          $^O eq 'mpeix');
+           $^O eq 'dos');
 
 $x = 'abc';
 
@@ -209,7 +208,7 @@ ok(not defined sysseek(I, -1, 1));
 
 close(I);
 
-unlink $outfile;
+unlink_all $outfile;
 
 # Check that utf8 IO doesn't upgrade the scalar
 open(I, ">$outfile") || die "sysio.t: cannot write $outfile: $!";
@@ -232,7 +231,7 @@ eval {syswrite I, 2;};
 is($@, '');
 
 close(I);
-unlink $outfile;
+unlink_all $outfile;
 
 chdir('..');