cleanup
[urisagit/Perl-Docs.git] / t / pseudo.t
index 66bf792..5deda84 100644 (file)
@@ -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' ) ;
 }