stas 01/12/10 22:29:09
Added: perl-framework/build bugreport.pl config.pl
Log:
- add the utilities bugreport and config for use in
httpd-test/perl-framework
Revision Changes Path
1.1 httpd-test/perl-framework/build/bugreport.pl
Index: bugreport.pl
===================================================================
#!/usr/bin/perl -w
use strict;
use FindBin qw($Bin);
use lib "$Bin/../Apache-Test/lib";
use Apache::TestConfig ();
my $env = Apache::TestConfig::as_string();
{
local $/ = undef;
my $template = <DATA>;
$template =~ s/\[CONFIG\]/$env/;
print $template;
}
__DATA__
-------------8<----------Start Bug Report ------------8<----------
1. Problem Description:
[DESCRIBE THE PROBLEM HERE]
2. Used Components and their Configuration:
[CONFIG]
3. This is the core dump trace: (if you get a core dump):
[CORE TRACE COMES HERE]
-------------8<----------End Bug Report --------------8<----------
Note: Complete the rest of the details and post this bug report to
[EMAIL PROTECTED] as is. To subscribe to the list send an
empty email to [EMAIL PROTECTED]
1.1 httpd-test/perl-framework/build/config.pl
Index: config.pl
===================================================================
#!/usr/bin/perl -w
use strict;
use FindBin qw($Bin);
use lib "$Bin/../Apache-Test/lib";
use Apache::TestConfig ();
print Apache::TestConfig::as_string();