r59501 - in /trunk/libtime-clock-perl: Changes META.yml debian/changelog lib/Time/Clock.pm t/parse.t

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Fri Jun 18 06:57:28 UTC 2010


Author: ansgar-guest
Date: Fri Jun 18 06:57:12 2010
New Revision: 59501

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=59501
Log:
IGNORE-VERSION: 1.02-1
Fix test for systems without Time::HiRes

Modified:
    trunk/libtime-clock-perl/Changes
    trunk/libtime-clock-perl/META.yml
    trunk/libtime-clock-perl/debian/changelog
    trunk/libtime-clock-perl/lib/Time/Clock.pm
    trunk/libtime-clock-perl/t/parse.t

Modified: trunk/libtime-clock-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtime-clock-perl/Changes?rev=59501&op=diff
==============================================================================
--- trunk/libtime-clock-perl/Changes (original)
+++ trunk/libtime-clock-perl/Changes Fri Jun 18 06:57:12 2010
@@ -1,3 +1,7 @@
+1.02 (06.15.2010) - John Siracusa <siracusa at gmail.com>
+
+    * Fixed test failures on systems without Time::HiRes.
+
 1.01 (06.03.2010) - John Siracusa <siracusa at gmail.com>
 
     * Prevent parse failure on greater-than-nanoseconds precision.

Modified: trunk/libtime-clock-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtime-clock-perl/META.yml?rev=59501&op=diff
==============================================================================
--- trunk/libtime-clock-perl/META.yml (original)
+++ trunk/libtime-clock-perl/META.yml Fri Jun 18 06:57:12 2010
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Time-Clock
-version:            1.01
+version:            1.02
 abstract:           Twenty-four hour clock object with nanosecond precision.
 author:
     - John Siracusa <siracusa at gmail.com>

Modified: trunk/libtime-clock-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtime-clock-perl/debian/changelog?rev=59501&op=diff
==============================================================================
--- trunk/libtime-clock-perl/debian/changelog (original)
+++ trunk/libtime-clock-perl/debian/changelog Fri Jun 18 06:57:12 2010
@@ -1,3 +1,10 @@
+libtime-clock-perl (1.02-1) UNRELEASED; urgency=low
+
+  IGNORE-VERSION: 1.02-1
+  Fix test for systems without Time::HiRes
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Fri, 18 Jun 2010 15:54:23 +0900
+
 libtime-clock-perl (1.01-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libtime-clock-perl/lib/Time/Clock.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtime-clock-perl/lib/Time/Clock.pm?rev=59501&op=diff
==============================================================================
--- trunk/libtime-clock-perl/lib/Time/Clock.pm (original)
+++ trunk/libtime-clock-perl/lib/Time/Clock.pm Fri Jun 18 06:57:12 2010
@@ -4,7 +4,7 @@
 
 use Carp;
 
-our $VERSION = '1.01';
+our $VERSION = '1.02';
 
 use overload
 (

Modified: trunk/libtime-clock-perl/t/parse.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtime-clock-perl/t/parse.t?rev=59501&op=diff
==============================================================================
--- trunk/libtime-clock-perl/t/parse.t (original)
+++ trunk/libtime-clock-perl/t/parse.t Fri Jun 18 06:57:12 2010
@@ -69,8 +69,7 @@
 }
 else
 {
-  ok($t->parse('now'), 'parse now hires (skipped)');
-  ok($t->as_string =~ /^\d\d:\d\d:\d\d\.\d+$/, 'now hires (skipped)');
-  ok($t->parse('now'), 'parse now');
-  ok($t->as_string =~ /^\d\d:\d\d:\d\d$/, 'check now lowres');
+  ok($t->parse('now'), 'parse now hires (skipped) 1');
+  ok($t->as_string =~ /^\d\d:\d\d:\d\d$/, 'now hires (skipped) 2');
+  SKIP: { skip('parse now lowres', 2) }
 }




More information about the Pkg-perl-cvs-commits mailing list