diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-24 12:37:13 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-24 12:37:13 +0000 |
commit | 371ddd858c2651cdea3fbca05e7054367a51f6ac (patch) | |
tree | ed8d00b42cef4f264971909e9b6a3ffc348b1c19 /t/lib | |
parent | ec4ab249deaa88f5a071536b0473504f26c43486 (diff) | |
download | perl-371ddd858c2651cdea3fbca05e7054367a51f6ac.tar.gz |
Iteration continues; hopefully convergently.
p4raw-id: //depot/perl@10193
Diffstat (limited to 't/lib')
-rw-r--r-- | t/lib/b-stash.t | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/t/lib/b-stash.t b/t/lib/b-stash.t index d0ae76a3dc..7f523b5cc4 100644 --- a/t/lib/b-stash.t +++ b/t/lib/b-stash.t @@ -39,16 +39,21 @@ if ($Is_VMS) { $a =~ s/-uVMS,-uVMS::Filespec,//; $a =~ s/-uSocket,//; # Socket is optional/compiler version dependent } -use vars '$OS2::is_aout'; + +{ + no strict 'vars'; + use vars '$OS2::is_aout'; +} if (($Config{static_ext} eq ' ' || ($Config{static_ext} eq 'Socket' && $Is_VMS)) && !($^O eq 'os2' and $OS2::is_aout) - ) { - if (ord('A') == 193) { # EBCDIC sort order is qw(a A) not qw(A a) - $b = join ',', sort split /,/, $b; - } - print "# [$a]\n# vs.\n# [$b]\nnot " if $a ne $b; - ok; + ) { + if (ord('A') == 193) { # EBCDIC sort order is qw(a A) not qw(A a) + $b = join ',', sort split /,/, $b; + } + print "# [$a]\n# vs.\n# [$b]\nnot " if $a ne $b; + ok; } else { - print "ok $test # skipped: one or more static extensions\n"; $test++; + print "ok $test # skipped: one or more static extensions\n"; $test++; } + |