X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVPIT-TestHelpers.git;a=blobdiff_plain;f=t%2F30-run_perl.t;h=cd040e133c8938e70fce9f21bbcbc77ea01f0ab5;hp=b71f7be0b592cacd2540bfa5e1917030fdf1a21e;hb=3d20039698dc108e2111d69c4c73e6fa9cc5c091;hpb=ca9da898bbed123e1c3c95814673315cfc125187 diff --git a/t/30-run_perl.t b/t/30-run_perl.t index b71f7be..cd040e1 100644 --- a/t/30-run_perl.t +++ b/t/30-run_perl.t @@ -5,7 +5,7 @@ use warnings; use VPIT::TestHelpers; -use Test::More tests => 4; +use Test::More tests => 5; use Config; use File::Temp; @@ -18,10 +18,12 @@ my $ld_path = $Config::Config{ldlibpthname}; my %expected_vars = ( 'MSWin32' => [ qw ], - 'android' => [ $ld_path ], + 'android' => [ ], 'cygwin' => [ qw ], + 'darwin' => [ ], 'linux' => [ ], ); +push @$_, $ld_path for values %expected_vars; my @all_vars = do { my %uniq; @@ -35,7 +37,7 @@ my @ignored_vars = qw< __CF_USER_TEXT_ENCODING >; -for my $os (qw) { +for my $os (qw) { 1 while unlink $filename; local $^O = $os;