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 do...@apache.org on 2002/05/14 02:27:16 UTC

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

dougm       02/05/13 17:27:16

  Modified:    .        Changes
               perl-framework/Apache-Test/lib/Apache TestConfig.pm
  Log:
  disabled term coloring by default (enable with env var APACHE_TEST_COLOR=1)
  
  Revision  Changes    Path
  1.9       +2 -0      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Changes	14 May 2002 00:18:43 -0000	1.8
  +++ Changes	14 May 2002 00:27:16 -0000	1.9
  @@ -10,6 +10,8 @@
   
   =item 1.99_02-dev
   
  +disabled term coloring by default (enable with env var APACHE_TEST_COLOR=1)
  +
   fix for APR::IpSubnet->new to check return status apr_ipsubnet_create
   
   enabled APR::SockAddr module
  
  
  
  1.130     +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.129
  retrieving revision 1.130
  diff -u -r1.129 -r1.130
  --- TestConfig.pm	13 May 2002 18:49:19 -0000	1.129
  +++ TestConfig.pm	14 May 2002 00:27:16 -0000	1.130
  @@ -7,7 +7,7 @@
   use constant CYGWIN  => $^O eq 'cygwin';
   use constant NETWARE => $^O eq 'NetWare';
   use constant WINFU   => WIN32 || CYGWIN || NETWARE;
  -use constant COLOR   => ! $ENV{APACHE_TEST_NO_COLOR} && -t STDOUT;
  +use constant COLOR   => ($ENV{APACHE_TEST_COLOR} && -t STDOUT) ? 1 : 0;
   
   use constant DEFAULT_PORT => 8529;