p4raw-id: //depot/perl@21264
plan skip_all => 'Non-Unix platform';
}
else {
- plan tests => 116;
+ plan tests => 117;
}
}
$t->init_linker;
foreach (qw/ EXPORT_LIST PERL_ARCHIVE PERL_ARCHIVE_AFTER LD /)
{
+ use Config;
ok( exists $t->{$_}, "$_ was defined" );
- is( $t->{$_}, '', "$_ is empty on Unix");
+ if (exists $Config{lc $_}) {
+ is($t->{$_}, $Config{lc $_}, "$_ is like in %Config ($t->{$_})");
+ } else {
+ is($t->{$_}, '', "$_ is empty on Unix");
+ }
}