Skip to content

Commit

Permalink
Remove unused variables from t/op/chdir.t.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigberry committed Jun 26, 2015
1 parent b226f3e commit 3d2dd2a
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions t/op/chdir.t
Expand Up @@ -18,20 +18,6 @@ use Errno qw(ENOENT);

my $IsVMS = $^O eq 'VMS';

my $vms_unix_rpt = 0;
my $vms_efs = 0;
if ($IsVMS) {
if (eval 'require VMS::Feature') {
$vms_unix_rpt = VMS::Feature::current("filename_unix_report");
$vms_efs = VMS::Feature::current("efs_charset");
} else {
my $unix_rpt = $ENV{'DECC$FILENAME_UNIX_REPORT'} || '';
my $efs_charset = $ENV{'DECC$EFS_CHARSET'} || '';
$vms_unix_rpt = $unix_rpt =~ /^[ET1]/i;
$vms_efs = $efs_charset =~ /^[ET1]/i;
}
}

# For an op regression test, I don't want to rely on "use constant" working.
my $has_fchdir = ($Config{d_fchdir} || "") eq "define";

Expand Down

0 comments on commit 3d2dd2a

Please sign in to comment.