X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fpseudo.t;h=5deda8469d830b659a8795e8d47545eeebc9da99;hb=12444d55c2adf5750309cf8afdb16f9b247fd227;hp=66bf792eac6d78ffba2abe3c1a666fe612ccd60f;hpb=997098525898485838522aa547a080189cb7a313;p=urisagit%2FPerl-Docs.git diff --git a/t/pseudo.t b/t/pseudo.t index 66bf792..5deda84 100644 --- a/t/pseudo.t +++ b/t/pseudo.t @@ -6,7 +6,7 @@ use File::Slurp ; use Carp ; use Test::More ; -plan( tests => 1 ) ; +plan( tests => 1 ) ; my $proc_file = "/proc/$$/auxv" ; @@ -24,7 +24,11 @@ sub test_pseudo_file { my $data_do = do{ local( @ARGV, $/ ) = $proc_file; <> } ; +#print "LEN: ", length $data_do, "\n" ; + my $data_slurp = read_file( $proc_file ) ; +#print "LEN2: ", length $data_slurp, "\n" ; +#print "LEN3: ", -s $proc_file, "\n" ; is( $data_do, $data_slurp, 'pseudo' ) ; }