X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Valgrind.git;a=blobdiff_plain;f=lib%2FTest%2FValgrind%2FCommand%2FPerlScript.pm;h=3c4627de9c1c668bf7974114c3a3938935829841;hp=fbe077e33c4c55d150e963070de7183e83606ce2;hb=11eeabaad0bbb6db15b9c967fae94cd7388f0012;hpb=faf3290acd380f75314a2283314d0a8bcbf97065 diff --git a/lib/Test/Valgrind/Command/PerlScript.pm b/lib/Test/Valgrind/Command/PerlScript.pm index fbe077e..3c4627d 100644 --- a/lib/Test/Valgrind/Command/PerlScript.pm +++ b/lib/Test/Valgrind/Command/PerlScript.pm @@ -29,12 +29,21 @@ This class inherits L. =head2 C<< new file => $file, [ taint_mode => $taint_mode ], ... >> -Your usual constructor. +The package constructor, which takes several options : + +=over 4 + +=item * C<$file> is the path to the C script you want to run. -C<$taint_mode> is a boolean that specifies if the script should be run under taint mode. -If C is passed (which is the default), the constructor will try to infer it from the shebang line of the script. +This option is mandatory. + +=item * + +C<$taint_mode> is actually handled by the parent class L, but it gets special handling in this subclass : if C is passed (which is the default), the constructor will try to infer its right value from the shebang line of the script. + +=back Other arguments are passed straight to C<< Test::Valgrind::Command::Perl->new >>. @@ -46,14 +55,10 @@ sub new { my %args = @_; - my $file = delete $args{file}; + my $file = delete $args{file}; $class->_croak('Invalid script file') unless $file and -e $file; - my $taint_mode = delete $args{taint_mode}; - - my $self = bless $class->SUPER::new(%args), $class; - - $self->{file} = $file; + my $taint_mode = delete $args{taint_mode}; if (not defined $taint_mode and open my $fh, '<', $file) { my $first = <$fh>; close $fh; @@ -62,7 +67,13 @@ sub new { } $taint_mode = 0 unless defined $taint_mode; } - $self->{taint_mode} = $taint_mode; + + my $self = bless $class->SUPER::new( + taint_mode => $taint_mode, + %args, + ), $class; + + $self->{file} = $file; return $self; } @@ -73,19 +84,14 @@ sub new_trainer { Test::Valgrind::Command::Perl->new_trainer } Read-only accessor for the C option. -=head2 C - -Read-only accessor for the C option. - =cut -eval "sub $_ { \$_[0]->{$_} }" for qw/file taint_mode/; +sub file { $_[0]->{file} } sub args { my $self = shift; return $self->SUPER::args(@_), - (('-T') x!! $self->taint_mode), $self->file }