From: Artur Bergman Date: Tue, 5 Feb 2002 11:39:24 +0000 (+0000) Subject: Add . first to the PATH environment to test that we really X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f47fe535c3933e8edc36375f2e8361ede38636f9;p=p5sagit%2Fp5-mst-13.2.git Add . first to the PATH environment to test that we really get ./perl and not some other older perl. p4raw-id: //depot/perl@14559 --- diff --git a/lib/File/Spec/t/rel2abs2rel.t b/lib/File/Spec/t/rel2abs2rel.t index 69232d9..e824dff 100644 --- a/lib/File/Spec/t/rel2abs2rel.t +++ b/lib/File/Spec/t/rel2abs2rel.t @@ -8,6 +8,9 @@ BEGIN { @INC = '../lib'; } +use Config; +$ENV{'PATH'} = '.' . $Config{'path_sep'} . $ENV{'PATH'}; + use Test::More tests => 5; use File::Spec;