1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
#!perl
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;
}
}
END {
unlink 'tmon.out', 'err';
}
use Benchmark qw( timediff timestr );
use Getopt::Std 'getopts';
getopts('vI:p:');
# -v Verbose
# -I Add to @INC
# -p Name of perl binary
@tests = @ARGV ? @ARGV : sort <lib/dprof/*_t lib/dprof/*_v>; # glob-sort, for OS/2
$path_sep = $Config{path_sep} || ':';
$perl5lib = $opt_I || join( $path_sep, @INC );
$perl = $opt_p || $^X;
if( $opt_v ){
print "tests: @tests\n";
print "perl: $perl\n";
print "perl5lib: $perl5lib\n";
}
if( $perl =~ m|^\./| ){
# turn ./perl into ../perl, because of chdir(t) above.
$perl = ".$perl";
}
if( ! -f $perl ){ die "Where's Perl?" }
sub profile {
my $test = shift;
my @results;
local $ENV{PERL5LIB} = $perl5lib;
my $opt_d = '-d:DProf';
my $t_start = new Benchmark;
open( R, "$perl $opt_d $test |" ) || warn "$0: Can't run. $!\n";
@results = <R>;
close R;
my $t_total = timediff( new Benchmark, $t_start );
if( $opt_v ){
print "\n";
print @results
}
print timestr( $t_total, 'nop' ), "\n";
}
sub verify {
my $test = shift;
system $perl, '-I../lib', '-I./lib/dprof', $test,
$opt_v?'-v':'', '-p', $perl;
}
$| = 1;
print "1..18\n";
while( @tests ){
$test = shift @tests;
if( $test =~ /_t$/i ){
print "# $test" . '.' x (20 - length $test);
profile $test;
}
else{
verify $test;
}
}
unlink("tmon.out");
|