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 2001/12/22 03:15:33 UTC

cvs commit: httpd-test/perl-framework/t/modules env.t

dougm       01/12/21 18:15:33

  Modified:    perl-framework/t/modules env.t
  Log:
  skip PassEnv test on win32
  
  Revision  Changes    Path
  1.13      +8 -0      httpd-test/perl-framework/t/modules/env.t
  
  Index: env.t
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/t/modules/env.t,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- env.t	2001/10/23 15:18:18	1.12
  +++ env.t	2001/12/22 02:15:33	1.13
  @@ -16,6 +16,14 @@
       'nothere' => '(none)'
   );
   
  +if (Apache::TestConfig::WIN32) {
  +    #what looks like a bug in perl 5.6.1 prevents %ENV
  +    #settings to be inherited by process created with
  +    #Win32::Process::Create.  the test works fine if APACHE_TEST_HOSTNAME
  +    #is set in the command shell environment
  +    delete $test{'host'};
  +}
  +
   plan tests => (keys %test) * 1, have_module('env', 'include');
   
   my ($actual, $expected);