AIX-Perfstat

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.02  Thu Jul 20 18:22:52 2006
	- Added an example Perl script, updated the documentation,
	and updated the copyright in all the files.

0.03  Fri Jul 28 11:58:53 MDT 2006
	- Fixed network interface tests. Commented out some tests
	not working on all AIX. Will look into this later.

0.04  Wed Sep 24 16:55:50 MDT 2008
	- Added restrictions for OS and perfstat library, so that
	CPAN Testers don't report failures on unsupported platforms.

0.04.1 Tue Sep 30 09:09:36 MDT 2008
	- Fix the version number and the changelog.

inc/Devel/CheckLib.pm  view on Meta::CPAN

=head1 FUNCTIONS

All of these take the same named parameters and are exported by default.
To avoid exporting them, C<use Devel::CheckLib ()>.

=head2 assert_lib

This takes several named parameters, all of which are optional, and dies
with an error message if any of the libraries listed can
not be found.  B<Note>: dying in a Makefile.PL or Build.PL may provoke
a 'FAIL' report from CPAN Testers' automated smoke testers.  Use 
C<check_lib_or_exit> instead.

The named parameters are:

=over

=item lib

Must be either a string with the name of a single 
library or a reference to an array of strings of library names.  Depending

t/cpu.t  view on Meta::CPAN

#######################################################################

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl cpu.t'

#########################

use warnings;
use strict;

use Test::More;
BEGIN { use_ok('AIX::Perfstat') };

#########################


use AIX::Perfstat;

########################
#Compute number of tests to run.

t/disk.t  view on Meta::CPAN

# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
#######################################################################

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl disk.t'

#########################

use Test::More;
BEGIN { use_ok('AIX::Perfstat') };

#########################


use AIX::Perfstat;

########################
#Compute number of tests to run.

t/memory.t  view on Meta::CPAN

# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
#######################################################################

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl memory.t'

#########################

use Test::More;
BEGIN { use_ok('AIX::Perfstat') };

#########################

use AIX::Perfstat;

########################
#Compute number of tests to run.

plan tests => 2;

t/netinterface.t  view on Meta::CPAN

# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
#######################################################################

# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl netinterface.t'

#########################

use Test::More;
BEGIN { use_ok('AIX::Perfstat') };

#########################

use AIX::Perfstat;

########################
#Compute number of tests to run.

plan tests => 18;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.120 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )