Devel-DTrace
view release on metacpan or search on metacpan
version: 0.11
abstract: Enable dtrace probes for subroutine entry, exit
author:
- Andy Armstrong <andy@hexten.net>
license: perl
distribution_type: module
configure_requires:
ExtUtils::MakeMaker: 0
requires:
List::Util: 0
Test::Differences: 0
Test::More: 0
no_index:
directory:
- t
- inc
generated_by: ExtUtils::MakeMaker version 6.48
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
Makefile.PL view on Meta::CPAN
( MM->can( 'signature_target' ) ? ( SIGN => 1 ) : () ),
NAME => 'Devel::DTrace',
AUTHOR => 'Andy Armstrong <andy@hexten.net>',
LICENSE => 'perl',
VERSION_FROM => 'lib/Devel/DTrace.pm',
ABSTRACT_FROM => 'lib/Devel/DTrace.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Test::Differences' => 0,
'List::Util' => 0,
},
OBJECT => join( ' ', @obj, 'DTrace.o' ),
EXE_FILES => ['dtperl'],
dist => {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
},
t/devel-dtrace.t view on Meta::CPAN
use strict;
use warnings;
use Test::More;
use Test::Differences;
use constant IS_SOLARIS => ( $^O =~ /solaris/ );
my @scripts = map { [ $_, reference( $_ ) ] }
@ARGV ? @ARGV : glob 't/scripts/*.pl';
my @methods
= ( [ 'module', $^X, ( map { "-I$_" } @INC ), '-MDevel::DTrace' ], );
if ( $] >= 5.008008 && !IS_SOLARIS ) {
( run in 2.022 seconds using v1.01-cache-2.11-cpan-6aa56a78535 )