X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FBenchmark.t;h=3a7a1def8597a96bcb6a567ea9fdb6c82f1cd9dd;hb=d0c833c6b6d161774fa9ee0c74b6748675c48591;hp=be711f1330173ec862ae748bfc77c552191263a8;hpb=b695f709e8a342e35e482b0437eb6cdacdc58b6b;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/Benchmark.t b/lib/Benchmark.t old mode 100755 new mode 100644 index be711f1..3a7a1de --- a/lib/Benchmark.t +++ b/lib/Benchmark.t @@ -1,88 +1,616 @@ -#!perl +#!./perl -w BEGIN { - chdir( 't' ) if -d 't'; - @INC = '../lib'; - require Config; import Config; - if ($Config{'extensions'} !~ /\bDevel\/DProf\b/){ - print "1..0 # Skip: Devel::DProf was not built\n"; - exit 0; + chdir 't' if -d 't'; + @INC = ('../lib'); +} + +use warnings; +use strict; +use vars qw($foo $bar $baz $ballast); +use Test::More tests => 194; + +use Benchmark qw(:all); + +my $delta = 0.4; + +# Some timing ballast +sub fib { + my $n = shift; + return $n if $n < 2; + fib($n-1) + fib($n-2); +} +$ballast = 15; + +my $All_Pattern = + qr/(\d+) +wallclock secs? +\( *(-?\d+\.\d\d) +usr +(-?\d+\.\d\d) +sys +\+ +(-?\d+\.\d\d) +cusr +(-?\d+\.\d\d) +csys += +(-?\d+\.\d\d) +CPU\)/; +my $Noc_Pattern = + qr/(\d+) +wallclock secs? +\( *(-?\d+\.\d\d) +usr +\+ +(-?\d+\.\d\d) +sys += +(-?\d+\.\d\d) +CPU\)/; +my $Nop_Pattern = + qr/(\d+) +wallclock secs? +\( *(-?\d+\.\d\d) +cusr +\+ +(-?\d+\.\d\d) +csys += +\d+\.\d\d +CPU\)/; +# Please don't trust the matching parenthises to be useful in this :-) +my $Default_Pattern = qr/$All_Pattern|$Noc_Pattern/; + +my $t0 = new Benchmark; +isa_ok ($t0, 'Benchmark', "Ensure we can create a benchmark object"); + +# We use the benchmark object once we've done some work: + +isa_ok(timeit(5, sub {++$foo}), 'Benchmark', "timeit CODEREF"); +is ($foo, 5, "benchmarked code was run 5 times"); + +isa_ok(timeit(5, '++$bar'), 'Benchmark', "timeit eval"); +is ($bar, 5, "benchmarked code was run 5 times"); + +# is coderef called with spurious arguments? +timeit( 1, sub { $foo = @_ }); +is ($foo, 0, "benchmarked code called without arguments"); + + +print "# Burning CPU to benchmark things will take time...\n"; + + + +# We need to do something fairly slow in the coderef. +# Same coderef. Same place in memory. +my $coderef = sub {$baz += fib($ballast)}; + +# The default is three. +$baz = 0; +my $threesecs = countit(0, $coderef); +isa_ok($threesecs, 'Benchmark', "countit 0, CODEREF"); +isnt ($baz, 0, "benchmarked code was run"); +my $in_threesecs = $threesecs->iters; +print "# $in_threesecs iterations\n"; +ok ($in_threesecs > 0, "iters returned positive iterations"); + +my $estimate = int (100 * $in_threesecs / 3) / 100; +print "# from the 3 second run estimate $estimate iterations in 1 second...\n"; +$baz = 0; +my $onesec = countit(1, $coderef); +isa_ok($onesec, 'Benchmark', "countit 1, CODEREF"); +isnt ($baz, 0, "benchmarked code was run"); +my $in_onesec = $onesec->iters; +print "# $in_onesec iterations\n"; +ok ($in_onesec > 0, "iters returned positive iterations"); + +{ + my $difference = $in_onesec - $estimate; + my $actual = abs ($difference / $in_onesec); + ok ($actual < $delta, "is $in_onesec within $delta of estimate ($estimate)"); + print "# $in_onesec is between " . ($delta / 2) . + " and $delta of estimate. Not that safe.\n" if $actual > $delta/2; +} + +# I found that the eval'ed version was 3 times faster than the coderef. +# (now it has a different ballast value) +$baz = 0; +my $again = countit(1, '$baz += fib($ballast)'); +isa_ok($onesec, 'Benchmark', "countit 1, eval"); +isnt ($baz, 0, "benchmarked code was run"); +my $in_again = $again->iters; +print "# $in_again iterations\n"; +ok ($in_again > 0, "iters returned positive iterations"); + + +my $t1 = new Benchmark; +isa_ok ($t1, 'Benchmark', "Create another benchmark object now we're finished"); + +my $diff = timediff ($t1, $t0); +isa_ok ($diff, 'Benchmark', "Get the time difference"); +isa_ok (timesum ($t0, $t1), 'Benchmark', "check timesum"); + +my $default = timestr ($diff); +isnt ($default, '', 'timestr ($diff)'); +my $auto = timestr ($diff, 'auto'); +is ($auto, $default, 'timestr ($diff, "auto") matches timestr ($diff)'); + +{ + my $all = timestr ($diff, 'all'); + like ($all, $All_Pattern, 'timestr ($diff, "all")'); + print "# $all\n"; + + my ($wallclock, $usr, $sys, $cusr, $csys, $cpu) = $all =~ $All_Pattern; + + is (timestr ($diff, 'none'), '', "none supresses output"); + + my $noc = timestr ($diff, 'noc'); + like ($noc, qr/$wallclock +wallclock secs? +\( *$usr +usr +\+ +$sys +sys += +$cpu +CPU\)/, 'timestr ($diff, "noc")'); + + my $nop = timestr ($diff, 'nop'); + like ($nop, qr/$wallclock +wallclock secs? +\( *$cusr +cusr +\+ +$csys +csys += +\d+\.\d\d +CPU\)/, 'timestr ($diff, "nop")'); + + if ($auto eq $noc) { + pass ('"auto" is "noc"'); + } else { + is ($auto, $all, '"auto" isn\'t "noc", so should be eq to "all"'); } + + like (timestr ($diff, 'all', 'E'), + qr/(\d+) +wallclock secs? +\( *\d\.\d+E[-+]?\d\d\d? +usr +\d\.\d+E[-+]?\d\d\d? +sys +\+ +\d\.\d+E[-+]?\d\d\d? +cusr +\d\.\d+E[-+]?\d\d\d? +csys += +\d\.\d+E[-+]?\d\d\d? +CPU\)/, 'timestr ($diff, "all", "E") [sprintf format of "E"]'); } -END { - while(-e 'tmon.out' && unlink 'tmon.out') {} - while(-e 'err' && unlink 'err') {} +my $out = tie *OUT, 'TieOut'; + +my $iterations = 3; + +$foo = 0; +select(OUT); +my $got = timethis($iterations, sub {++$foo}); +select(STDOUT); +isa_ok($got, 'Benchmark', "timethis CODEREF"); +is ($foo, $iterations, "benchmarked code was run $iterations times"); + +$got = $out->read(); +like ($got, qr/^timethis $iterations/, 'default title'); +like ($got, $Default_Pattern, 'default format is all or noc'); + +$bar = 0; +select(OUT); +$got = timethis($iterations, '++$bar'); +select(STDOUT); +isa_ok($got, 'Benchmark', "timethis eval"); +is ($bar, $iterations, "benchmarked code was run $iterations times"); + +$got = $out->read(); +like ($got, qr/^timethis $iterations/, 'default title'); +like ($got, $Default_Pattern, 'default format is all or noc'); + +my $title = 'lies, damn lies and benchmarks'; +$foo = 0; +select(OUT); +$got = timethis($iterations, sub {++$foo}, $title); +select(STDOUT); +isa_ok($got, 'Benchmark', "timethis with title"); +is ($foo, $iterations, "benchmarked code was run $iterations times"); + +$got = $out->read(); +like ($got, qr/^$title:/, 'specify title'); +like ($got, $Default_Pattern, 'default format is all or noc'); + +# default is auto, which is all or noc. nop can never match the default +$foo = 0; +select(OUT); +$got = timethis($iterations, sub {++$foo}, $title, 'nop'); +select(STDOUT); +isa_ok($got, 'Benchmark', "timethis with format"); +is ($foo, $iterations, "benchmarked code was run $iterations times"); + +$got = $out->read(); +like ($got, qr/^$title:/, 'specify title'); +like ($got, $Nop_Pattern, 'specify format as nop'); + +{ + $foo = 0; + select(OUT); + my $start = time; + $got = timethis(-2, sub {$foo+= fib($ballast)}, $title, 'none'); + my $end = time; + select(STDOUT); + isa_ok($got, 'Benchmark', + "timethis, at least 2 seconds with format 'none'"); + ok ($foo > 0, "benchmarked code was run"); + ok ($end - $start > 1, "benchmarked code ran for over 1 second"); + + $got = $out->read(); + # Remove any warnings about having too few iterations. + $got =~ s/\(warning:[^\)]+\)//gs; + $got =~ s/^[ \t\n]+//s; # Remove all the whitespace from the beginning + + is ($got, '', "format 'none' should suppress output"); } -use Benchmark qw( timediff timestr ); -use Getopt::Std 'getopts'; -getopts('vI:p:'); +$foo = $bar = $baz = 0; +select(OUT); +$got = timethese($iterations, { Foo => sub {++$foo}, Bar => '++$bar', + Baz => sub {++$baz} }); +select(STDOUT); +is(ref ($got), 'HASH', "timethese should return a hashref"); +isa_ok($got->{Foo}, 'Benchmark', "Foo value"); +isa_ok($got->{Bar}, 'Benchmark', "Bar value"); +isa_ok($got->{Baz}, 'Benchmark', "Baz value"); +eq_set([keys %$got], [qw(Foo Bar Baz)], 'should be exactly three objects'); +is ($foo, $iterations, "Foo code was run $iterations times"); +is ($bar, $iterations, "Bar code was run $iterations times"); +is ($baz, $iterations, "Baz code was run $iterations times"); + +$got = $out->read(); +# Remove any warnings about having too few iterations. +$got =~ s/\(warning:[^\)]+\)//gs; + +like ($got, qr/timing $iterations iterations of\s+Bar\W+Baz\W+Foo\W*?\.\.\./s, + 'check title'); +# Remove the title +$got =~ s/.*\.\.\.//s; +like ($got, qr/\bBar\b.*\bBaz\b.*\bFoo\b/s, 'check output is in sorted order'); +like ($got, $Default_Pattern, 'should find default format somewhere'); + + +{ # ensure 'use strict' does not leak from Benchmark.pm into benchmarked code + no strict; + select OUT; -# -v Verbose -# -I Add to @INC -# -p Name of perl binary + eval { + timethese( 1, + { undeclared_var => q{ $i++; $i-- }, + symbolic_ref => q{ $bar = 42; + $foo = 'bar'; + $q = ${$foo} }, + }, + 'none' + ); -@tests = @ARGV ? @ARGV : sort (, ); # glob-sort, for OS/2 + }; + is( $@, '', q{no strict leakage in name => 'code'} ); -$path_sep = $Config{path_sep} || ':'; -$perl5lib = $opt_I || join( $path_sep, @INC ); -$perl = $opt_p || $^X; + eval { + timethese( 1, + { undeclared_var => sub { $i++; $i-- }, + symbolic_ref => sub { $bar = 42; + $foo = 'bar'; + return ${$foo} }, + }, + 'none' + ); + }; + is( $@, '', q{no strict leakage in name => sub { code }} ); -if( $opt_v ){ - print "tests: @tests\n"; - print "perl: $perl\n"; - print "perl5lib: $perl5lib\n"; + # clear out buffer + $out->read; } -if( $perl =~ m|^\./| ){ - # turn ./perl into ../perl, because of chdir(t) above. - $perl = ".$perl"; + + +my $code_to_test = { Foo => sub {$foo+=fib($ballast-2)}, + Bar => sub {$bar+=fib($ballast)}}; +# Keep these for later. +my $results; +{ + $foo = $bar = 0; + select(OUT); + my $start = times; + $results = timethese(-0.1, $code_to_test, 'none'); + my $end = times; + select(STDOUT); + + is(ref ($results), 'HASH', "timethese should return a hashref"); + isa_ok($results->{Foo}, 'Benchmark', "Foo value"); + isa_ok($results->{Bar}, 'Benchmark', "Bar value"); + eq_set([keys %$results], [qw(Foo Bar)], 'should be exactly two objects'); + ok ($foo > 0, "Foo code was run"); + ok ($bar > 0, "Bar code was run"); + + ok (($end - $start) > 0.1, "benchmarked code ran for over 0.1 seconds"); + + $got = $out->read(); + # Remove any warnings about having too few iterations. + $got =~ s/\(warning:[^\)]+\)//gs; + is ($got =~ tr/ \t\n//c, 0, "format 'none' should suppress output"); } -if( ! -f $perl ){ die "Where's Perl?" } +my $graph_dissassembly = + qr!^[ \t]+(\S+)[ \t]+(\w+)[ \t]+(\w+)[ \t]* # Title line + \n[ \t]*(\w+)[ \t]+([0-9.]+(?:/s)?)[ \t]+(-+)[ \t]+(-?\d+%)[ \t]* + \n[ \t]*(\w+)[ \t]+([0-9.]+(?:/s)?)[ \t]+(-?\d+%)[ \t]+(-+)[ \t]*$!xm; -sub profile { - my $test = shift; - my @results; - local $ENV{PERL5LIB} = $perl5lib; - my $opt_d = '-d:DProf'; +sub check_graph_consistency { + my ( $ratetext, $slowc, $fastc, + $slowr, $slowratet, $slowslow, $slowfastt, + $fastr, $fastratet, $fastslowt, $fastfast) + = @_; + my $all_passed = 1; + $all_passed + &= is ($slowc, $slowr, "left col tag should be top row tag"); + $all_passed + &= is ($fastc, $fastr, "right col tag should be bottom row tag"); + $all_passed &= + like ($slowslow, qr/^-+/, "should be dash for comparing slow with slow"); + $all_passed + &= is ($slowslow, $fastfast, "slow v slow should be same as fast v fast"); + my $slowrate = $slowratet; + my $fastrate = $fastratet; + my ($slow_is_rate, $fast_is_rate); + unless ($slow_is_rate = $slowrate =~ s!/s!!) { + # Slow is expressed as iters per second. + $slowrate = 1/$slowrate if $slowrate; + } + unless ($fast_is_rate = $fastrate =~ s!/s!!) { + # Fast is expressed as iters per second. + $fastrate = 1/$fastrate if $fastrate; + } + if ($ratetext =~ /rate/i) { + $all_passed + &= ok ($slow_is_rate, "slow should be expressed as a rate"); + $all_passed + &= ok ($fast_is_rate, "fast should be expressed as a rate"); + } else { + $all_passed &= + ok (!$slow_is_rate, "slow should be expressed as a iters per second"); + $all_passed &= + ok (!$fast_is_rate, "fast should be expressed as a iters per second"); + } + + (my $slowfast = $slowfastt) =~ s!%!!; + (my $fastslow = $fastslowt) =~ s!%!!; + if ($slowrate < $fastrate) { + pass ("slow rate is less than fast rate"); + unless (ok ($slowfast <= 0 && $slowfast >= -100, + "slowfast should be less than or equal to zero, and >= -100")) { + print STDERR "# slowfast $slowfast\n"; + $all_passed = 0; + } + unless (ok ($fastslow > 0, "fastslow should be > 0")) { + print STDERR "# fastslow $fastslow\n"; + $all_passed = 0; + } + } else { + $all_passed + &= is ($slowrate, $fastrate, + "slow rate isn't less than fast rate, so should be the same"); + # In OpenBSD the $slowfast is sometimes a really, really, really + # small number less than zero, and this gets stringified as -0. + $all_passed + &= like ($slowfast, qr/^-?0$/, "slowfast should be zero"); + $all_passed + &= like ($fastslow, qr/^-?0$/, "fastslow should be zero"); + } + return $all_passed; +} + +sub check_graph_vs_output { + my ($chart, $got) = @_; + my ( $ratetext, $slowc, $fastc, + $slowr, $slowratet, $slowslow, $slowfastt, + $fastr, $fastratet, $fastslowt, $fastfast) + = $got =~ $graph_dissassembly; + my $all_passed + = check_graph_consistency ( $ratetext, $slowc, $fastc, + $slowr, $slowratet, $slowslow, $slowfastt, + $fastr, $fastratet, $fastslowt, $fastfast); + $all_passed + &= is_deeply ($chart, [['', $ratetext, $slowc, $fastc], + [$slowr, $slowratet, $slowslow, $slowfastt], + [$fastr, $fastratet, $fastslowt, $fastfast]], + "check the chart layout matches the formatted output"); + unless ($all_passed) { + print STDERR "# Something went wrong there. I got this chart:\n"; + print STDERR "# $_\n" foreach split /\n/, $got; + } +} + +sub check_graph { + my ($title, $row1, $row2) = @_; + is (scalar @$title, 4, "Four entries in title row"); + is (scalar @$row1, 4, "Four entries in first row"); + is (scalar @$row2, 4, "Four entries in second row"); + is (shift @$title, '', "First entry of output graph should be ''"); + check_graph_consistency (@$title, @$row1, @$row2); +} + +{ + select(OUT); + my $start = times; + my $chart = cmpthese( -0.1, { a => "++\$i", b => "\$i = sqrt(\$i++)" }, "auto" ) ; + my $end = times; + select(STDOUT); + ok (($end - $start) > 0.05, "benchmarked code ran for over 0.05 seconds"); + + $got = $out->read(); + # Remove any warnings about having too few iterations. + $got =~ s/\(warning:[^\)]+\)//gs; + + like ($got, qr/running\W+a\W+b.*?for at least 0\.1 CPU second/s, + 'check title'); + # Remove the title + $got =~ s/.*\.\.\.//s; + like ($got, $Default_Pattern, 'should find default format somewhere'); + like ($got, $graph_dissassembly, "Should find the output graph somewhere"); + check_graph_vs_output ($chart, $got); +} + +# Not giving auto should suppress timethese results. +{ + select(OUT); + my $start = times; + my $chart = cmpthese( -0.1, { a => "++\$i", b => "\$i = sqrt(\$i++)" } ) ; + my $end = times; + select(STDOUT); + ok (($end - $start) > 0.05, "benchmarked code ran for over 0.05 seconds"); + + $got = $out->read(); + # Remove any warnings about having too few iterations. + $got =~ s/\(warning:[^\)]+\)//gs; + + unlike ($got, qr/running\W+a\W+b.*?for at least 0\.1 CPU second/s, + 'should not have title'); + # Remove the title + $got =~ s/.*\.\.\.//s; + unlike ($got, $Default_Pattern, 'should not find default format somewhere'); + like ($got, $graph_dissassembly, "Should find the output graph somewhere"); + check_graph_vs_output ($chart, $got); +} + +{ + $foo = $bar = 0; + select(OUT); + my $chart = cmpthese( 10, $code_to_test, 'nop' ) ; + select(STDOUT); + ok ($foo > 0, "Foo code was run"); + ok ($bar > 0, "Bar code was run"); + + $got = $out->read(); + # Remove any warnings about having too few iterations. + $got =~ s/\(warning:[^\)]+\)//gs; + like ($got, qr/timing 10 iterations of\s+Bar\W+Foo\W*?\.\.\./s, + 'check title'); + # Remove the title + $got =~ s/.*\.\.\.//s; + like ($got, $Nop_Pattern, 'specify format as nop'); + like ($got, $graph_dissassembly, "Should find the output graph somewhere"); + check_graph_vs_output ($chart, $got); +} + +{ + $foo = $bar = 0; + select(OUT); + my $chart = cmpthese( 10, $code_to_test, 'none' ) ; + select(STDOUT); + ok ($foo > 0, "Foo code was run"); + ok ($bar > 0, "Bar code was run"); + + $got = $out->read(); + # Remove any warnings about having too few iterations. + $got =~ s/\(warning:[^\)]+\)//gs; + $got =~ s/^[ \t\n]+//s; # Remove all the whitespace from the beginning + is ($got, '', "format 'none' should suppress output"); + is (ref $chart, 'ARRAY', "output should be an array ref"); + # Some of these will go bang if the preceding test fails. There will be + # a big clue as to why, from the previous test's diagnostic + is (ref $chart->[0], 'ARRAY', "output should be an array of arrays"); + check_graph (@$chart); +} + +{ + $foo = $bar = 0; + select(OUT); + my $chart = cmpthese( $results ) ; + select(STDOUT); + is ($foo, 0, "Foo code was not run"); + is ($bar, 0, "Bar code was not run"); + + $got = $out->read(); + ok ($got !~ /\.\.\./s, 'check that there is no title'); + like ($got, $graph_dissassembly, "Should find the output graph somewhere"); + check_graph_vs_output ($chart, $got); +} - my $t_start = new Benchmark; - open( R, "$perl \"$opt_d\" $test |" ) || warn "$0: Can't run. $!\n"; - @results = ; - close R; - my $t_total = timediff( new Benchmark, $t_start ); +{ + $foo = $bar = 0; + select(OUT); + my $chart = cmpthese( $results, 'none' ) ; + select(STDOUT); + is ($foo, 0, "Foo code was not run"); + is ($bar, 0, "Bar code was not run"); + + $got = $out->read(); + is ($got, '', "'none' should suppress all output"); + is (ref $chart, 'ARRAY', "output should be an array ref"); + # Some of these will go bang if the preceding test fails. There will be + # a big clue as to why, from the previous test's diagnostic + is (ref $chart->[0], 'ARRAY', "output should be an array of arrays"); + check_graph (@$chart); +} + +###}my $out = tie *OUT, 'TieOut'; my ($got); ### + +my $debug = tie *STDERR, 'TieOut'; + +$bar = 0; +isa_ok(timeit(5, '++$bar'), 'Benchmark', "timeit eval"); +is ($bar, 5, "benchmarked code was run 5 times"); +is ($debug->read(), '', "There was no debug output"); + +Benchmark->debug(1); + +$bar = 0; +select(OUT); +$got = timeit(5, '++$bar'); +select(STDOUT); +isa_ok($got, 'Benchmark', "timeit eval"); +is ($bar, 5, "benchmarked code was run 5 times"); +is ($out->read(), '', "There was no STDOUT output with debug enabled"); +isnt ($debug->read(), '', "There was STDERR debug output with debug enabled"); + +Benchmark->debug(0); + +$bar = 0; +isa_ok(timeit(5, '++$bar'), 'Benchmark', "timeit eval"); +is ($bar, 5, "benchmarked code was run 5 times"); +is ($debug->read(), '', "There was no debug output debug disabled"); + +undef $debug; +untie *STDERR; + +# To check the cache we are poking where we don't belong, inside the namespace. +# The way benchmark is written We can't actually check whehter the cache is +# being used, merely what's become cached. + +clearallcache(); +my @before_keys = keys %Benchmark::Cache; +$bar = 0; +isa_ok(timeit(5, '++$bar'), 'Benchmark', "timeit eval"); +is ($bar, 5, "benchmarked code was run 5 times"); +my @after5_keys = keys %Benchmark::Cache; +$bar = 0; +isa_ok(timeit(10, '++$bar'), 'Benchmark', "timeit eval"); +is ($bar, 10, "benchmarked code was run 10 times"); +ok (!eq_array ([keys %Benchmark::Cache], \@after5_keys), "10 differs from 5"); + +clearcache(10); +# Hash key order will be the same if there are the same keys. +is_deeply ([keys %Benchmark::Cache], \@after5_keys, + "cleared 10, only cached results for 5 should remain"); + +clearallcache(); +is_deeply ([keys %Benchmark::Cache], \@before_keys, + "back to square 1 when we clear the cache again?"); - if( $opt_v ){ - print "\n"; - print @results - } - print '# ',timestr( $t_total, 'nop' ), "\n"; +{ # Check usage error messages + my %usage = %Benchmark::_Usage; + delete $usage{runloop}; # not public, not worrying about it just now + + my @takes_no_args = qw(clearallcache disablecache enablecache); + + my %cmpthese = ('forgot {}' => 'cmpthese( 42, foo => sub { 1 } )', + 'not result' => 'cmpthese(42)', + 'array ref' => 'cmpthese( 42, [ foo => sub { 1 } ] )', + ); + while( my($name, $code) = each %cmpthese ) { + eval $code; + is( $@, $usage{cmpthese}, "cmpthese usage: $name" ); + } + + my %timethese = ('forgot {}' => 'timethese( 42, foo => sub { 1 } )', + 'no code' => 'timethese(42)', + 'array ref' => 'timethese( 42, [ foo => sub { 1 } ] )', + ); + + while( my($name, $code) = each %timethese ) { + eval $code; + is( $@, $usage{timethese}, "timethese usage: $name" ); + } + + + while( my($func, $usage) = each %usage ) { + next if grep $func eq $_, @takes_no_args; + eval "$func()"; + is( $@, $usage, "$func usage: no args" ); + } + + foreach my $func (@takes_no_args) { + eval "$func(42)"; + is( $@, $usage{$func}, "$func usage: with args" ); + } } -sub verify { - my $test = shift; +package TieOut; - my $command = $perl.' "-I../lib" "-I./lib/dprof" '.$test; - $command .= ' -v' if $opt_v; - $command .= ' -p '. $perl; - system $command; +sub TIEHANDLE { + my $class = shift; + bless(\( my $ref = ''), $class); } +sub PRINT { + my $self = shift; + $$self .= join('', @_); +} -$| = 1; -print "1..18\n"; -while( @tests ){ - $test = shift @tests; - $test =~ s/\.$// if $^O eq 'VMS'; - if( $test =~ /_t$/i ){ - print "# $test" . '.' x (20 - length $test); - profile $test; - } - else{ - verify $test; - } +sub PRINTF { + my $self = shift; + $$self .= sprintf shift, @_; } -unlink("tmon.out"); +sub read { + my $self = shift; + return substr($$self, 0, length($$self), ''); +}