This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
update Time-HiRes to CPAN version 1.9724
authorZefram <zefram@fysh.org>
Tue, 21 Jun 2011 13:52:32 +0000 (14:52 +0100)
committerZefram <zefram@fysh.org>
Tue, 21 Jun 2011 14:58:41 +0000 (15:58 +0100)
commit90e44bf6837bd02a228479f5a7ecece0f15573ee
tree0c513137cfc9c32b1a722d6d8be3e8546908f7bf
parent9853179ee737b0251b45bbf226f19095c30edfd4
update Time-HiRes to CPAN version 1.9724

- Correct XS parameter list, and therefore prototype, for
  unimplemented-on-this-platform version of clock_nanosleep()
  [rt.cpan.org #68700].
- Declare package variables with "our" rather than "use vars".
- Corresponding to "our" usage, check for minimum Perl version
  5.006.
- Declare module dependencies.

- Remove $ENV{PERL_CORE} logic from test suite, which is no
  longer desired in the core.
- Convert test suite to use Test::More.
- Factor out watchdog code from test suite.
- In test suite, be consistent about using fully-qualified form
  of function names.
- Divide test suite into feature-specific scripts.
- Make ualarm timing test less vulnerable to delay-induced false
  failure, from Dave Mitchell.
20 files changed:
MANIFEST
Porting/Maintainers.pl
cpan/Time-HiRes/Changes
cpan/Time-HiRes/HiRes.pm
cpan/Time-HiRes/HiRes.xs
cpan/Time-HiRes/Makefile.PL
cpan/Time-HiRes/t/HiRes.t [deleted file]
cpan/Time-HiRes/t/Watchdog.pm [new file with mode: 0644]
cpan/Time-HiRes/t/alarm.t [new file with mode: 0644]
cpan/Time-HiRes/t/clock.t [new file with mode: 0644]
cpan/Time-HiRes/t/gettimeofday.t [new file with mode: 0644]
cpan/Time-HiRes/t/itimer.t [new file with mode: 0644]
cpan/Time-HiRes/t/nanosleep.t [new file with mode: 0644]
cpan/Time-HiRes/t/sleep.t [new file with mode: 0644]
cpan/Time-HiRes/t/stat.t [new file with mode: 0644]
cpan/Time-HiRes/t/time.t [new file with mode: 0644]
cpan/Time-HiRes/t/tv_interval.t [new file with mode: 0644]
cpan/Time-HiRes/t/ualarm.t [new file with mode: 0644]
cpan/Time-HiRes/t/usleep.t [new file with mode: 0644]
t/TEST