remove a random key stroke in EGID, update manifest, and add some more load tests

This commit is contained in:
Zane C. B-H 2019-08-25 03:39:14 -05:00
parent f68f5b6019
commit 0b526672a5
25 changed files with 323 additions and 1 deletions

View File

@ -27,6 +27,29 @@ Makefile.PL
MANIFEST This list of files
README
t/00-load.t
t/01-load.t
t/02-load.t
t/03-load.t
t/04-load.t
t/05-load.t
t/06-load.t
t/07-load.t
t/08-load.t
t/09-load.t
t/10-load.t
t/11-load.t
t/12-load.t
t/13-load.t
t/14-load.t
t/15-load.t
t/16-load.t
t/17-load.t
t/18-load.t
t/19-load.t
t/20-load.t
t/21-load.t
t/22-load.t
t/23-load.t
t/manifest.t
t/pod-coverage.t
t/pod.t

View File

@ -1,4 +1,4 @@
[6~package Proc::ProcessTable::Match::EGID;
package Proc::ProcessTable::Match::EGID;
use 5.006;
use strict;

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Cmndline' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Cmndline $Proc::ProcessTable::Match::Cmndline::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Command' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Command $Proc::ProcessTable::Match::Command::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::EGID' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::EGID $Proc::ProcessTable::Match::EGID::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::EGIDset' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::EGIDset $Proc::ProcessTable::Match::EGIDset::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::EUID' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::EUID $Proc::ProcessTable::Match::EUID::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::EUIDset' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::EUIDset $Proc::ProcessTable::Match::EUIDset::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Fname' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Fname $Proc::ProcessTable::Match::Fname::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::GID' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::GID $Proc::ProcessTable::Match::GID::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Idle' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Idle $Proc::ProcessTable::Match::Idle::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::JID' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::JID $Proc::ProcessTable::Match::JID::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::KernProc' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::KernProc $Proc::ProcessTable::Match::KernProc::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::PID' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::PID $Proc::ProcessTable::Match::PID::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::PctCPU' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::PctCPU $Proc::ProcessTable::Match::PctCPU::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::PctMem' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::PctMem $Proc::ProcessTable::Match::PctMem::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Priority' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Priority $Proc::ProcessTable::Match::Priority::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::RSS' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::RSS $Proc::ProcessTable::Match::RSS::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Size' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Size $Proc::ProcessTable::Match::Size::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Start' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Start $Proc::ProcessTable::Match::Start::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::State' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::State $Proc::ProcessTable::Match::State::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Swapped' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Swapped $Proc::ProcessTable::Match::Swapped::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::Time' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::Time $Proc::ProcessTable::Match::Time::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::UID' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::UID $Proc::ProcessTable::Match::UID::VERSION, Perl $], $^X" );

View File

@ -0,0 +1,13 @@
#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;
plan tests => 1;
BEGIN {
use_ok( 'Proc::ProcessTable::Match::WChan' ) || print "Bail out!\n";
}
diag( "Testing Proc::ProcessTable::Match::WChan $Proc::ProcessTable::Match::WChan::VERSION, Perl $], $^X" );