stas 02/05/10 09:48:28
Modified: perl-framework/Apache-Test/lib/Apache TestSmoke.pm
Log:
winFU doesn't like : in the filenames
Submitted by: Alessandro Forghieri <[EMAIL PROTECTED]>
Revision Changes Path
1.13 +1 -0
httpd-test/perl-framework/Apache-Test/lib/Apache/TestSmoke.pm
Index: TestSmoke.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestSmoke.pm,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- TestSmoke.pm 12 Apr 2002 03:14:53 -0000 1.12
+++ TestSmoke.pm 10 May 2002 16:48:28 -0000 1.13
@@ -320,6 +320,7 @@
my $time = scalar localtime;
$self->{start_time} = $time;
$time =~ s/\s/_/g;
+ $time =~ s/:/-/g; # winFU
my $file = $self->{opts}->{report} || "smoke-report-$time.txt";
open my $fh, ">$file" or die "cannot open $file for writing: $!";