Forgot portability nit.
Jarkko Hietaniemi [Tue, 22 Aug 2000 19:44:47 +0000 (19:44 +0000)]
p4raw-id: //depot/perl@6779

t/lib/st-forgive.t

index e5272f0..822013b 100644 (file)
@@ -46,7 +46,7 @@ $Storable::forgive_me=1;
 my $devnull = File::Spec->devnull;
 
 open(SAVEERR, ">&STDERR");
-open(STDERR, ">/dev/null") or 
+open(STDERR, ">$devnull") or 
   ( print SAVEERR "Unable to redirect STDERR: $!\n" and exit(1) );
 
 eval {$result = store ($bad , 'store')};