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 2003/04/30 05:29:01 UTC

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

stas        2003/04/29 20:29:00

  Modified:    perl-framework/Apache-Test/lib/Apache TestConfig.pm
                        TestRun.pm
  Log:
  narrow a bit the usage output, so it won't wrap
  
  Revision  Changes    Path
  1.159     +1 -1      httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
  
  Index: TestConfig.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
  retrieving revision 1.158
  retrieving revision 1.159
  diff -u -r1.158 -r1.159
  --- TestConfig.pm	30 Apr 2003 03:25:12 -0000	1.158
  +++ TestConfig.pm	30 Apr 2003 03:29:00 -0000	1.159
  @@ -64,7 +64,7 @@
   sub usage {
       for my $hash (\%Usage) {
           for (sort keys %$hash){
  -            printf "   -%-18s %s\n", $_, $hash->{$_};
  +            printf "  -%-18s %s\n", $_, $hash->{$_};
           }
       }
   }
  
  
  
  1.107     +1 -1      httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm
  
  Index: TestRun.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
  retrieving revision 1.106
  retrieving revision 1.107
  diff -u -r1.106 -r1.107
  --- TestRun.pm	23 Apr 2003 02:24:16 -0000	1.106
  +++ TestRun.pm	30 Apr 2003 03:29:00 -0000	1.107
  @@ -822,7 +822,7 @@
   EOM
   
       for (sort keys %usage){
  -        printf "   -%-16s %s\n", $_, $usage{$_};
  +        printf "  -%-13s %s\n", $_, $usage{$_};
       }
   
       print "\n   configuration options:\n";