You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by st...@apache.org on 2002/05/10 18:48:28 UTC

cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestSmoke.pm

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 <Al...@think3.com>
  
  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: $!";