[Nagiosplug-checkins] SF.net SVN: nagiosplug: [1878] Nagios-Plugin/trunk
tonvoon at users.sourceforge.net
tonvoon at users.sourceforge.net
Tue Dec 18 15:24:19 CET 2007
Revision: 1878
http://nagiosplug.svn.sourceforge.net/nagiosplug/?rev=1878&view=rev
Author: tonvoon
Date: 2007-12-18 06:24:19 -0800 (Tue, 18 Dec 2007)
Log Message:
-----------
Use $^X for perl because of failures on CPAN Testers
Modified Paths:
--------------
Nagios-Plugin/trunk/Changes
Nagios-Plugin/trunk/lib/Nagios/Plugin/Functions.pm
Nagios-Plugin/trunk/lib/Nagios/Plugin.pm
Nagios-Plugin/trunk/t/check_stuff.t
Modified: Nagios-Plugin/trunk/Changes
===================================================================
--- Nagios-Plugin/trunk/Changes 2007-12-17 11:47:33 UTC (rev 1877)
+++ Nagios-Plugin/trunk/Changes 2007-12-18 14:24:19 UTC (rev 1878)
@@ -1,5 +1,8 @@
Revision history for Perl module Nagios::Plugin.
+0.23 18th December 2007
+ - Use $^X for perl in check_stuff.t test, due to lots of failing in CPAN Testers
+
0.22 13th December 2007
- Fixed handling of repeated ini arguments
Modified: Nagios-Plugin/trunk/lib/Nagios/Plugin/Functions.pm
===================================================================
--- Nagios-Plugin/trunk/lib/Nagios/Plugin/Functions.pm 2007-12-17 11:47:33 UTC (rev 1877)
+++ Nagios-Plugin/trunk/lib/Nagios/Plugin/Functions.pm 2007-12-18 14:24:19 UTC (rev 1878)
@@ -12,7 +12,7 @@
use Math::Calc::Units;
# Remember to update Nagios::Plugins as well
-our $VERSION = "0.22";
+our $VERSION = "0.23";
our @STATUS_CODES = qw(OK WARNING CRITICAL UNKNOWN DEPENDENT);
Modified: Nagios-Plugin/trunk/lib/Nagios/Plugin.pm
===================================================================
--- Nagios-Plugin/trunk/lib/Nagios/Plugin.pm 2007-12-17 11:47:33 UTC (rev 1877)
+++ Nagios-Plugin/trunk/lib/Nagios/Plugin.pm 2007-12-18 14:24:19 UTC (rev 1878)
@@ -25,7 +25,7 @@
# CPAN stupidly won't index this module without a literal $VERSION here,
# so we're forced to duplicate it explicitly
# Make sure you update $Nagios::Plugin::Functions::VERSION too
-our $VERSION = "0.22";
+our $VERSION = "0.23";
# our $VERSION = $Nagios::Plugin::Functions::VERSION;
sub new {
Modified: Nagios-Plugin/trunk/t/check_stuff.t
===================================================================
--- Nagios-Plugin/trunk/t/check_stuff.t 2007-12-17 11:47:33 UTC (rev 1877)
+++ Nagios-Plugin/trunk/t/check_stuff.t 2007-12-18 14:24:19 UTC (rev 1878)
@@ -6,7 +6,7 @@
my ($r,$args);
my $s = 't/check_stuff.pl';
-$s = 'perl -Ilib '.$s;
+$s = "$^X -Ilib $s";
my $n = 'STUFF';
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list