Make Test.pm search order the same as preload.perl

This commit is contained in:
Colin Kuskie 2009-09-15 13:20:49 -07:00
parent e161afd5c0
commit 716da0440f

View file

@ -136,7 +136,7 @@ BEGIN {
$line =~ s/^\s+//;
$line =~ s/\s+$//;
next LINE if !$line;
push @INC, $line;
unshift @INC, $line;
}
close $PRELOAD;
}