/[Apache-SVN]/httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestReport.pm
ViewVC logotype

Diff of /httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestReport.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestReport.pm	2004/11/23 23:28:09	106361
+++ httpd/test/trunk/perl-framework/Apache-Test/lib/Apache/TestReport.pm	2004/11/24 00:20:51	106362
@@ -83,27 +83,27 @@ sub executable { $0 }
 my $core_dump;
 sub core_dump {
     my $self = shift;
-    
+
     $core_dump = "";
-    
+
     if (eval { require Devel::GDB }) {
         find(\&dump_core_file, 't')
     }
-    
+
     $core_dump || '  [CORE TRACE COMES HERE]';
 }
 
 sub dump_core_file {
     return unless /^core(\.\d+)?$/;
-    
+
     my $core = $_;
     my $gdb = new Devel::GDB ();
     my $test_config = Apache::TestConfig->new({thaw=>1});
     my $httpd = $test_config->{vars}->{httpd};
-    
+
     return unless defined $httpd;
-    
-    $core_dump .= join '', 
+
+    $core_dump .= join '',
            $gdb->get("file $httpd"),
            $gdb->get('sharedlibrary'),
            $gdb->get("core $core"),

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26