summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichiel Beijen <mb@x14.nl>2021-12-03 07:56:08 +0100
committerMichiel Beijen <mb@x14.nl>2021-12-04 15:55:55 +0100
commit70cbce258a2f0c602dd4e986bb1d31ec3d459158 (patch)
treecac900e71152888dba2c76b0974db2d87ab49e09
parente728f790bcefcaf1d8b42e2f7ee16a9125f0af22 (diff)
downloadperl-70cbce258a2f0c602dd4e986bb1d31ec3d459158.tar.gz
do not count tests, instead use done_testing()
Having to count tests is annoying for maintainers. Also, manually updating count tests is problematic when multiple people are working on the same code; it causes merge conflicts and recounts. done_testing() is available since Test::More 0.88 which was released in 2009. This commit changes all tests under lib/ that use Test::More and were planning the number of tests. Michiel Beijen is now a Perl author
-rw-r--r--AUTHORS1
-rw-r--r--lib/B/Deparse-core.t3
-rw-r--r--lib/B/Deparse-subclass.t4
-rw-r--r--lib/Benchmark.t3
-rw-r--r--lib/Config/Extensions.t4
-rw-r--r--lib/DB.t4
-rw-r--r--lib/DBM_Filter/t/01error.t3
-rw-r--r--lib/DBM_Filter/t/02core.t3
-rw-r--r--lib/DBM_Filter/t/compress.t3
-rw-r--r--lib/DBM_Filter/t/encode.t4
-rw-r--r--lib/DBM_Filter/t/int32.t3
-rw-r--r--lib/DBM_Filter/t/null.t3
-rw-r--r--lib/DBM_Filter/t/utf8.t3
-rw-r--r--lib/DirHandle.t4
-rw-r--r--lib/English.t5
-rw-r--r--lib/File/Basename.t4
-rw-r--r--lib/File/Compare.t4
-rw-r--r--lib/File/Copy.t3
-rw-r--r--lib/FileHandle.t4
-rw-r--r--lib/Getopt/Std.t4
-rw-r--r--lib/Internals.t4
-rw-r--r--lib/Net/hostent.t4
-rw-r--r--lib/Pod/t/Usage.t2
-rw-r--r--lib/Symbol.t4
-rw-r--r--lib/Thread.t4
-rw-r--r--lib/Tie/ExtraHash.t3
-rw-r--r--lib/Tie/Handle/stdhandle.t4
-rw-r--r--lib/Tie/Handle/stdhandle_from_handle.t4
-rw-r--r--lib/Tie/Hash.t4
-rw-r--r--lib/Tie/Scalar.t4
-rw-r--r--lib/Time/gmtime.t4
-rw-r--r--lib/Time/localtime.t4
-rw-r--r--lib/User/grent.t2
-rw-r--r--lib/blib.t4
-rw-r--r--lib/dumpvar.t4
-rw-r--r--lib/filetest.t4
-rw-r--r--lib/h2xs.t15
-rw-r--r--lib/integer.t4
-rw-r--r--lib/less.t4
-rw-r--r--lib/overload64.t4
-rw-r--r--lib/overloading.t4
-rw-r--r--lib/sort.t6
-rw-r--r--lib/vmsish.t4
43 files changed, 107 insertions, 62 deletions
diff --git a/AUTHORS b/AUTHORS
index 2f93a9b96b..59895f8ede 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -910,6 +910,7 @@ Michael Stevens <mstevens@etla.org>
Michael van Elst <mlelstv@serpens.de>
Michael Witten <mfwitten@gmail.com>
Michele Sardo
+Michiel Beijen <mb@x14.nl>
Mik Firestone <fireston@lexmark.com>
Mike Doherty <mike@mikedoherty.ca>
Mike Fletcher <fletch@phydeaux.org>
diff --git a/lib/B/Deparse-core.t b/lib/B/Deparse-core.t
index 7d8613f521..2b6e6a52a0 100644
--- a/lib/B/Deparse-core.t
+++ b/lib/B/Deparse-core.t
@@ -36,7 +36,6 @@ BEGIN {
use strict;
use Test::More;
-plan tests => 3904;
use feature (sprintf(":%vd", $^V)); # to avoid relying on the feature
# logic to add CORE::
@@ -435,6 +434,8 @@ SKIP:
ok($pass, "sanity checks");
}
+done_testing();
+
__DATA__
#
# format:
diff --git a/lib/B/Deparse-subclass.t b/lib/B/Deparse-subclass.t
index c1484aa17f..80292fc09e 100644
--- a/lib/B/Deparse-subclass.t
+++ b/lib/B/Deparse-subclass.t
@@ -4,7 +4,7 @@
# publicise an API for subclassing B::Deparse they can prevent us from
# gratuitously breaking conventions that CPAN modules already use.
-use Test::More tests => 2;
+use Test::More;
use B::Deparse;
@@ -22,3 +22,5 @@ like $nm->coderef2text(sub { my($a, $b, $c) }),
like $nm->coderef2text(sub { my $c; /(??{ $c })/; }),
qr/\Q(??{\E \$c_groovy/,
'overriding padname works for renaming lexicals in regexp blocks';
+
+done_testing();
diff --git a/lib/Benchmark.t b/lib/Benchmark.t
index 523618f576..0f3d297ade 100644
--- a/lib/Benchmark.t
+++ b/lib/Benchmark.t
@@ -8,7 +8,7 @@ BEGIN {
use warnings;
use strict;
our ($foo, $bar, $baz, $ballast);
-use Test::More tests => 213;
+use Test::More;
use Benchmark qw(:all);
@@ -634,6 +634,7 @@ is_deeply ([keys %Benchmark::Cache], \@before_keys,
}
}
+done_testing();
package TieOut;
diff --git a/lib/Config/Extensions.t b/lib/Config/Extensions.t
index 1d730b0dd5..88dd496949 100644
--- a/lib/Config/Extensions.t
+++ b/lib/Config/Extensions.t
@@ -6,7 +6,7 @@ BEGIN {
}
}
use strict;
-use Test::More 'no_plan';
+use Test::More;
BEGIN {use_ok 'Config::Extensions', '%Extensions'};
@@ -31,3 +31,5 @@ while (my ($key, $val) = each %Extensions) {
my $type = $val . '_ext';
like($Config{$type}, $re, "$key is $type");
}
+
+done_testing();
diff --git a/lib/DB.t b/lib/DB.t
index e4ee074e71..8bb4413e35 100644
--- a/lib/DB.t
+++ b/lib/DB.t
@@ -18,7 +18,7 @@ use Scalar::Util qw( dualvar );
my $dualfalse = dualvar(0, 'false');
my $dualtrue = dualvar(1, 'true');
-use Test::More tests => 106;
+use Test::More;
# must happen at compile time for DB:: package variable localizations to work
BEGIN {
@@ -498,6 +498,8 @@ for my $method (qw( cprestop cpoststop awaken init stop idle cleanup output )) {
ok( defined &{ "DB::$method" }, "DB::$method() should be defined" );
}
+done_testing();
+
# DB::skippkg() uses lexical
# DB::ready() uses lexical
diff --git a/lib/DBM_Filter/t/01error.t b/lib/DBM_Filter/t/01error.t
index 33173f3e7e..bd691aaf92 100644
--- a/lib/DBM_Filter/t/01error.t
+++ b/lib/DBM_Filter/t/01error.t
@@ -45,7 +45,7 @@ print "# runFilter $name\n" ;
return $@;
}
-use Test::More tests => 21;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -249,3 +249,4 @@ undef $db;
is $@, '', "untie without inner references" ;
}
+done_testing();
diff --git a/lib/DBM_Filter/t/02core.t b/lib/DBM_Filter/t/02core.t
index 1f5fef94f1..e2d865a8dd 100644
--- a/lib/DBM_Filter/t/02core.t
+++ b/lib/DBM_Filter/t/02core.t
@@ -30,7 +30,7 @@ sub writeFile
END { unlink keys %files if keys %files }
-use Test::More tests => 189;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -728,3 +728,4 @@ sub checkRaw
}
+done_testing();
diff --git a/lib/DBM_Filter/t/compress.t b/lib/DBM_Filter/t/compress.t
index f9b1fe1219..e16d7dc526 100644
--- a/lib/DBM_Filter/t/compress.t
+++ b/lib/DBM_Filter/t/compress.t
@@ -14,7 +14,7 @@ print "# $@\n";
}
require "dbm_filter_util.pl";
-use Test::More tests => 23;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -119,3 +119,4 @@ undef $db2;
is $@, '', "untie without inner references" ;
}
+done_testing();
diff --git a/lib/DBM_Filter/t/encode.t b/lib/DBM_Filter/t/encode.t
index c7ef60428f..e8c9a8c4d9 100644
--- a/lib/DBM_Filter/t/encode.t
+++ b/lib/DBM_Filter/t/encode.t
@@ -19,7 +19,7 @@ BEGIN
require "dbm_filter_util.pl";
-use Test::More tests => 26;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -122,3 +122,5 @@ undef $db2;
}
}
+
+done_testing();
diff --git a/lib/DBM_Filter/t/int32.t b/lib/DBM_Filter/t/int32.t
index a74d49dfbe..90b209bb85 100644
--- a/lib/DBM_Filter/t/int32.t
+++ b/lib/DBM_Filter/t/int32.t
@@ -5,7 +5,7 @@ use Carp;
require "dbm_filter_util.pl";
-use Test::More tests => 22;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -97,3 +97,4 @@ undef $db2;
is $@, '', "untie without inner references" ;
}
+done_testing();
diff --git a/lib/DBM_Filter/t/null.t b/lib/DBM_Filter/t/null.t
index 8846183bf8..0b32766ecc 100644
--- a/lib/DBM_Filter/t/null.t
+++ b/lib/DBM_Filter/t/null.t
@@ -5,7 +5,7 @@ use Carp;
require "dbm_filter_util.pl";
-use Test::More tests => 26;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -94,3 +94,4 @@ undef $db2;
is $@, '', "untie without inner references" ;
}
+done_testing();
diff --git a/lib/DBM_Filter/t/utf8.t b/lib/DBM_Filter/t/utf8.t
index fb290e956b..e322049d65 100644
--- a/lib/DBM_Filter/t/utf8.t
+++ b/lib/DBM_Filter/t/utf8.t
@@ -18,7 +18,7 @@ BEGIN
require "dbm_filter_util.pl";
-use Test::More tests => 20;
+use Test::More;
BEGIN { use_ok('DBM_Filter') };
my $db_file;
@@ -96,3 +96,4 @@ undef $db2;
is $@, '', "untie without inner references" ;
}
+done_testing();
diff --git a/lib/DirHandle.t b/lib/DirHandle.t
index 2a131e6cc2..21a39f1212 100644
--- a/lib/DirHandle.t
+++ b/lib/DirHandle.t
@@ -11,7 +11,7 @@ BEGIN {
}
use DirHandle;
-use Test::More tests => 31;
+use Test::More;
# Fetching the list of files in two different ways and expecting them
# to be the same is a race condition when tests are running in parallel.
@@ -133,3 +133,5 @@ ok(! $bbdot->close(),
if ($chdir) {
chdir "..";
}
+
+done_testing();
diff --git a/lib/English.t b/lib/English.t
index f568d437a4..dc15926c69 100644
--- a/lib/English.t
+++ b/lib/English.t
@@ -6,7 +6,7 @@ BEGIN {
@INC = '../lib';
}
-use Test::More tests => 58;
+use Test::More;
use English qw( -no_match_vars ) ;
use Config;
@@ -164,6 +164,9 @@ main::ok( !$POSTMATCH, '$POSTMATCH disabled' );
::is $LIST_SEPARATOR, 'frooble';
}
+# because of the 'package' statements above, we have to prefix Test::More::
+Test::More::done_testing();
+
__END__
This is a line.
This is a paragraph.
diff --git a/lib/File/Basename.t b/lib/File/Basename.t
index 29d7d25226..785e03d54b 100644
--- a/lib/File/Basename.t
+++ b/lib/File/Basename.t
@@ -5,7 +5,7 @@ BEGIN {
@INC = '../lib';
}
-use Test::More tests => 65;
+use Test::More;
BEGIN { use_ok 'File::Basename' }
@@ -184,3 +184,5 @@ SKIP: {
ok tainted(dirname($TAINT.'/perl/lib//'));
ok all_tainted(fileparse($TAINT.'/dir/draft.book7','\.book\d+'));
}
+
+done_testing();
diff --git a/lib/File/Compare.t b/lib/File/Compare.t
index b7c9d9f7be..640b181631 100644
--- a/lib/File/Compare.t
+++ b/lib/File/Compare.t
@@ -17,7 +17,7 @@ BEGIN {
}
}
-use Test::More ( tests => 16 );
+use Test::More;
use File::Compare qw(compare compare_text);
# Upon success, compare() and compare_text() return a Unix-ish 0
@@ -132,6 +132,8 @@ SKIP: {
"compare() fails: second argument undefined");
}
+done_testing();
+
sub get_valid_whitespace {
return ' ' unless $^O eq 'VMS';
return (exists $ENV{'DECC$EFS_CHARSET'} && $ENV{'DECC$EFS_CHARSET'} =~ /^[ET1]/i)
diff --git a/lib/File/Copy.t b/lib/File/Copy.t
index f21c871316..57b86c1cc4 100644
--- a/lib/File/Copy.t
+++ b/lib/File/Copy.t
@@ -14,8 +14,6 @@ use Test::More;
my $TB = Test::More->builder;
-plan tests => 466;
-
# We are going to override rename() later on but Perl has to see an override
# at compile time to honor it.
BEGIN { *CORE::GLOBAL::rename = sub { CORE::rename($_[0], $_[1]) }; }
@@ -521,6 +519,7 @@ SKIP: {
"copy with buffer above normal size";
}
+done_testing();
END {
1 while unlink "copy-$$";
diff --git a/lib/FileHandle.t b/lib/FileHandle.t
index c13e772efa..aa82b57d0b 100644
--- a/lib/FileHandle.t
+++ b/lib/FileHandle.t
@@ -13,7 +13,7 @@ BEGIN {
use strict;
use FileHandle;
autoflush STDOUT 1;
-use Test::More (tests => 12);
+use Test::More;
my $TB = Test::More->builder;
my $mystdout = new_from_fd FileHandle 1,"w";
@@ -91,3 +91,5 @@ ok($|, "handle auto-flushing current output channel");
}
ok(!FileHandle->new('', 'r'), "Can't open empty filename");
+
+done_testing();
diff --git a/lib/Getopt/Std.t b/lib/Getopt/Std.t
index 746d5de321..b03f07bd1f 100644
--- a/lib/Getopt/Std.t
+++ b/lib/Getopt/Std.t
@@ -8,7 +8,7 @@ BEGIN {
use strict;
use warnings;
-use Test::More tests => 22;
+use Test::More;
use Getopt::Std;
our ($warning, $opt_f, $opt_i, $opt_o, $opt_x, $opt_y, %opt);
@@ -92,3 +92,5 @@ my $expected;
"getopt: single switch; switch expected argument, none provided; value undef");
undef %opt;
}
+
+done_testing();
diff --git a/lib/Internals.t b/lib/Internals.t
index 8af04af1bd..89d3948fe7 100644
--- a/lib/Internals.t
+++ b/lib/Internals.t
@@ -7,7 +7,7 @@ BEGIN {
}
}
-use Test::More tests => 82;
+use Test::More;
my $ro_err = qr/^Modification of a read-only value attempted/;
@@ -188,3 +188,5 @@ is( Internals::SvREFCNT($foo), $big_count, "reference count unsigned");
eval { &Internals::SvREFCNT($foo, 0..3);};
like($@, qr/\Q$usage\E/);
}
+
+done_testing();
diff --git a/lib/Net/hostent.t b/lib/Net/hostent.t
index 0f9dca0e1f..3ee1980988 100644
--- a/lib/Net/hostent.t
+++ b/lib/Net/hostent.t
@@ -19,7 +19,7 @@ BEGIN {
}
}
-use Test::More tests => 10;
+use Test::More;
BEGIN { use_ok 'Net::hostent' }
@@ -102,3 +102,5 @@ SKIP: {
}
}
}
+
+done_testing();
diff --git a/lib/Pod/t/Usage.t b/lib/Pod/t/Usage.t
index e626acb6f7..94c1518597 100644
--- a/lib/Pod/t/Usage.t
+++ b/lib/Pod/t/Usage.t
@@ -8,7 +8,6 @@ BEGIN {
use File::Basename;
use File::Spec;
use Test::More;
-plan tests => 8;
use_ok( 'Pod::Usage' );
@@ -97,6 +96,7 @@ my $pod2usage = $$fake_out;
is( $pod2usage, $pod2text, 'Verbose level >= 2 eq pod2text' );
+done_testing();
package CatchOut;
sub TIEHANDLE { bless \( my $self ), shift }
diff --git a/lib/Symbol.t b/lib/Symbol.t
index d2d032d2ee..45c441c1c9 100644
--- a/lib/Symbol.t
+++ b/lib/Symbol.t
@@ -8,7 +8,7 @@ BEGIN {
@INC = '../lib';
}
-use Test::More tests => 31;
+use Test::More;
BEGIN { $_ = 'foo'; } # because Symbol used to clobber $_
@@ -111,3 +111,5 @@ ok( exists $::{'Bar::'}, 'third transient stash exists' );
ok( defined $Bar::{variable}, 'third transient variable in stash' );
ok( ! defined(Symbol::delete_package('Bar::Bar::')),
'delete_package() returns undef due to undefined leaf');
+
+done_testing();
diff --git a/lib/Thread.t b/lib/Thread.t
index 18694c5b98..4f487a8db9 100644
--- a/lib/Thread.t
+++ b/lib/Thread.t
@@ -14,7 +14,7 @@ BEGIN {
use Thread qw(:DEFAULT async yield);
-use Test::More tests => 13;
+use Test::More;
my $lock;
{
@@ -93,4 +93,4 @@ COND_:
is($thr->join(), 3, "->join returned thread's tid");
}
-# EOF
+done_testing();
diff --git a/lib/Tie/ExtraHash.t b/lib/Tie/ExtraHash.t
index bbaf64f040..18a2e4678d 100644
--- a/lib/Tie/ExtraHash.t
+++ b/lib/Tie/ExtraHash.t
@@ -2,7 +2,7 @@
use strict;
use warnings;
-use Test::More tests => 11;
+use Test::More;
use_ok('Tie::Hash');
tie my %tied, 'Tie::ExtraHash';
@@ -39,3 +39,4 @@ is_deeply(\%tied, \%hash, "CLEAR");
# SCALAR
is(scalar(%tied), scalar(%hash), "SCALAR");
+done_testing();
diff --git a/lib/Tie/Handle/stdhandle.t b/lib/Tie/Handle/stdhandle.t
index 6c20d90f2b..6f0848c9f6 100644
--- a/lib/Tie/Handle/stdhandle.t
+++ b/lib/Tie/Handle/stdhandle.t
@@ -5,7 +5,7 @@ BEGIN {
@INC = '../lib';
}
-use Test::More tests => 29;
+use Test::More;
use_ok('Tie::StdHandle');
@@ -87,3 +87,5 @@ ok(eof($f), "eof");
ok(close($f), "close");
unlink("afile");
+
+done_testing();
diff --git a/lib/Tie/Handle/stdhandle_from_handle.t b/lib/Tie/Handle/stdhandle_from_handle.t
index 0e95e5c819..9de923f566 100644
--- a/lib/Tie/Handle/stdhandle_from_handle.t
+++ b/lib/Tie/Handle/stdhandle_from_handle.t
@@ -5,7 +5,7 @@ BEGIN {
@INC = '../lib';
}
-use Test::More tests => 1;
+use Test::More;
use Tie::Handle;
@@ -16,3 +16,5 @@ use Tie::Handle;
# For backwards compatibility with 5.8.x
ok( Foo->can("TIEHANDLE"), "loading Tie::Handle loads TieStdHandle" );
+
+done_testing();
diff --git a/lib/Tie/Hash.t b/lib/Tie/Hash.t
index c7b4ebe63f..fe43849903 100644
--- a/lib/Tie/Hash.t
+++ b/lib/Tie/Hash.t
@@ -2,7 +2,7 @@
# These tests are not complete. Patches welcome.
-use Test::More tests => 3;
+use Test::More;
BEGIN {use_ok( 'Tie::Hash' )};
@@ -11,3 +11,5 @@ for my $method (qw( TIEHASH EXISTS )) {
eval { Tie::Hash->$method() };
like( $@, qr/doesn't define an? $method/, "croaks on inherited $method()" );
}
+
+done_testing();
diff --git a/lib/Tie/Scalar.t b/lib/Tie/Scalar.t
index 4a6fcfa526..3b860df5e7 100644
--- a/lib/Tie/Scalar.t
+++ b/lib/Tie/Scalar.t
@@ -16,7 +16,7 @@ sub new { 'Fooled you.' }
package main;
our $flag;
-use Test::More tests => 16;
+use Test::More;
use_ok( 'Tie::Scalar' );
@@ -118,3 +118,5 @@ my $r2 = eval {tie my $foo => "InheritHasMethod2"; 1};
ok $r1 && $called1, "inheriting new() does not croak";
ok $r2 && $called2, "inheriting TIESCALAR() does not croak";
+
+done_testing();
diff --git a/lib/Time/gmtime.t b/lib/Time/gmtime.t
index 54f64357f0..2ed85b826b 100644
--- a/lib/Time/gmtime.t
+++ b/lib/Time/gmtime.t
@@ -7,8 +7,6 @@ BEGIN {
@times = (-2**55, -2**50, -2**33, -2**31-1, -1, 0, 1, 2**31-1, 2**33, 2**50, 2**55, time);
@methods = qw(sec min hour mday mon year wday yday isdst);
- plan tests => (@times * (@methods + 1)) + 1;
-
use_ok Time::gmtime;
}
@@ -21,3 +19,5 @@ for my $time (@times) {
is $gmtime->$method, shift @gmtime, "gmtime($time)->$method";
}
}
+
+done_testing();
diff --git a/lib/Time/localtime.t b/lib/Time/localtime.t
index 0d75dcbab9..afafa6f76c 100644
--- a/lib/Time/localtime.t
+++ b/lib/Time/localtime.t
@@ -7,8 +7,6 @@ BEGIN {
@times = (-2**55, -2**50, -2**33, -2**31-1, -1, 0, 1, 2**31-1, 2**33, 2**50, 2**55, time);
@methods = qw(sec min hour mday mon year wday yday isdst);
- plan tests => (@times * (@methods + 1)) + 1;
-
use_ok Time::localtime;
}
@@ -21,3 +19,5 @@ for my $time (@times) {
is $localtime->$method, shift @localtime, "localtime($time)->$method";
}
}
+
+done_testing();
diff --git a/lib/User/grent.t b/lib/User/grent.t
index 3002b6eec9..8f34762695 100644
--- a/lib/User/grent.t
+++ b/lib/User/grent.t
@@ -24,7 +24,6 @@ BEGIN {
}
BEGIN {
- plan tests => 5;
use_ok('User::grent');
}
@@ -41,3 +40,4 @@ is( $grent->gid, $grent[2], ' gid' );
# Testing pretty much anything else is unportable.
+done_testing();
diff --git a/lib/blib.t b/lib/blib.t
index 2ad9827d77..0da24477ae 100644
--- a/lib/blib.t
+++ b/lib/blib.t
@@ -48,7 +48,7 @@ BEGIN {
_cleanup( @blib_dirs );
}
-use Test::More tests => 7;
+use Test::More;
eval 'use blib;';
ok( $@ =~ /Cannot find blib/, 'Fails if blib directory not found' );
@@ -81,4 +81,6 @@ else
ok( grep(m|\Q$blib_lib\E$|, @INC[0,1]) == 1, " $blib_lib in \@INC");
ok( grep(m|\Q$blib_arch\E$|, @INC[0,1]) == 1, " $blib_arch in \@INC");
+done_testing();
+
END { _cleanup( @blib_dirs ); }
diff --git a/lib/dumpvar.t b/lib/dumpvar.t
index 3e48b1728f..2cc4a52930 100644
--- a/lib/dumpvar.t
+++ b/lib/dumpvar.t
@@ -23,8 +23,6 @@ my @prgs;
use Test::More;
-plan tests => scalar @prgs;
-
require "dumpvar.pl";
sub unctrl { print dumpvar::unctrl($_[0]), "\n" }
@@ -84,6 +82,8 @@ for (@prgs) {
}
}
+done_testing();
+
package TieOut;
sub TIEHANDLE {
diff --git a/lib/filetest.t b/lib/filetest.t
index 5088611731..1a7074d57a 100644
--- a/lib/filetest.t
+++ b/lib/filetest.t
@@ -6,7 +6,7 @@ BEGIN {
}
use Config;
-use Test::More tests => 15;
+use Test::More;
# these two should be kept in sync with the pragma itself
# if hint bits are changed there, other things *will* break
@@ -98,3 +98,5 @@ SKIP: {
unlink $tstfile;
warn "Can't remove $tstfile: $!" if -e $tstfile;
}
+
+done_testing();
diff --git a/lib/h2xs.t b/lib/h2xs.t
index 69746a52b3..426a7bc870 100644
--- a/lib/h2xs.t
+++ b/lib/h2xs.t
@@ -154,19 +154,6 @@ Writing $name/MANIFEST
EOXSFILES
);
-my $total_tests = 3; # opening, closing and deleting the header file.
-for (my $i = $#tests; $i > 0; $i-=3) {
- # 1 test for running it, 1 test for the expected result, and 1 for each file
- # plus 1 to open and 1 to check for the use in lib/$name.pm and Makefile.PL
- # And 1 more for our check for "bonus" files, 2 more for ExtUtil::Manifest.
- # And 1 more to examine const-c.inc contents in tests that use $header.
- # use the () to force list context and hence count the number of matches.
- $total_tests += 9 + (() = $tests[$i] =~ /(Writing)/sg);
- $total_tests++ if $tests[$i-2] =~ / \Q$header\E$/;
-}
-
-plan tests => $total_tests;
-
ok (open (HEADER, '>', $header), "open '$header'");
print HEADER <<HEADER or die $!;
#define Camel 2
@@ -253,3 +240,5 @@ while (my ($args, $version, $expectation) = splice @tests, 0, 3) {
}
cmp_ok (unlink ($header), "==", 1, "unlink '$header'") or die "\$! is $!";
+
+done_testing();
diff --git a/lib/integer.t b/lib/integer.t
index c1bb4d04cf..7ad97b6a9f 100644
--- a/lib/integer.t
+++ b/lib/integer.t
@@ -7,7 +7,7 @@ BEGIN {
use integer;
-use Test::More tests => 15;
+use Test::More;
use Config;
my $x = 4.5;
@@ -67,3 +67,5 @@ SKIP: {
is($@, '', 'IV_MIN % -1 succeeds');
is($biff, 0, 'IV_MIN % -1 == 0');
}
+
+done_testing();
diff --git a/lib/less.t b/lib/less.t
index 7713eb66e5..1d05961b5c 100644
--- a/lib/less.t
+++ b/lib/less.t
@@ -5,7 +5,7 @@ BEGIN {
push @INC, '../lib';
}
-use Test::More tests => 12;
+use Test::More;
BEGIN {
use_ok( 'less' );
@@ -34,3 +34,5 @@ use less 'random acts';
is_deeply([sort less->of],[sort qw(random acts)],'less random acts');
is(scalar less->of('random'),1,'less random');
+
+done_testing();
diff --git a/lib/overload64.t b/lib/overload64.t
index f11f8598bc..d95bc27280 100644
--- a/lib/overload64.t
+++ b/lib/overload64.t
@@ -11,7 +11,7 @@ BEGIN {
}
$| = 1;
-use Test::More 'tests' => 140;
+use Test::More;
my $ii = 36028797018963971; # 2^55 + 3
@@ -273,4 +273,4 @@ is($$oo, $cnt++, 'overload called once');
}
}
-# EOF
+done_testing();
diff --git a/lib/overloading.t b/lib/overloading.t
index 85fc7e2c94..692d1589a3 100644
--- a/lib/overloading.t
+++ b/lib/overloading.t
@@ -1,6 +1,6 @@
#./perl
-use Test::More tests => 50;
+use Test::More;
use Scalar::Util qw(refaddr);
@@ -114,3 +114,5 @@ is( cos($x), "far side of overload table", "cosinusfies" );
BEGIN { ok(!exists($^H{overloading}), "overloading hint removed") }
}
+
+done_testing();
diff --git a/lib/sort.t b/lib/sort.t
index 0e56bd0dac..1ba0664777 100644
--- a/lib/sort.t
+++ b/lib/sort.t
@@ -25,9 +25,7 @@ BEGIN {
use strict;
use warnings;
-use Test::More tests => @TestSizes * 2 # sort() tests
- * 3 # number of pragmas to test
- + 10; # tests for sort::current
+use Test::More;
# Generate array of specified size for testing sort.
#
@@ -213,3 +211,5 @@ main(sub { sort {&{$_[0]}} @{$_[1]} }, 0);
}
is($sort_current, 'stable', 'sort::current for stable');
}
+
+done_testing();
diff --git a/lib/vmsish.t b/lib/vmsish.t
index 7681f07f60..dac97b648b 100644
--- a/lib/vmsish.t
+++ b/lib/vmsish.t
@@ -10,7 +10,7 @@ $perl = VMS::Filespec::vmsify($perl) if $^O eq 'VMS';
my $Invoke_Perl = qq(MCR $perl "-I[-.lib]");
-use Test::More tests => 29;
+use Test::More;
SKIP: {
skip("tests for non-VMS only", 1) if $^O eq 'VMS';
@@ -183,6 +183,8 @@ is($?,0,"outer lex scope of vmsish [POSIX status]");
}
}
+done_testing();
+
#====== need this to make sure error messages come out, even if
# they were turned off in invoking procedure
sub do_a_perl {