[Module-build-checkins] Module-Build/t ppm.t,1.3,1.4
Status: Beta
Brought to you by:
kwilliams
From: Randy W. S. <si...@us...> - 2005-12-02 22:37:35
|
Update of /cvsroot/module-build/Module-Build/t In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15308/t Modified Files: ppm.t Log Message: Fix broken conditional. Index: ppm.t =================================================================== RCS file: /cvsroot/module-build/Module-Build/t/ppm.t,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ppm.t 1 Dec 2005 09:00:37 -0000 1.3 +++ ppm.t 2 Dec 2005 22:37:28 -0000 1.4 @@ -24,9 +24,9 @@ if ( ! $mb->feature('C_support') ) { plan skip_all => 'C_support not enabled'; - } elsif ( !$have_c_compiler ) { + } elsif ( ! $have_c_compiler ) { plan skip_all => 'C_support enabled, but no compiler found'; - } elsif ( eval {require Archive::Tar} ) { + } elsif ( ! eval {require Archive::Tar} ) { plan skip_all => "Archive::Tar not installed; can't test archives."; } else { plan tests => 12; |