cvs commit: modperl-2.0/t/response/TestAPR finfo.pm

2003-12-16 Thread randyk
randyk  2003/12/16 10:13:04

  Modified:t/response/TestAPR finfo.pm
  Log:
  On Win32, skip atime test, which doesn't work on NTFS file
  systems. Reported by Steve Hay.
  
  Revision  ChangesPath
  1.7   +2 -1  modperl-2.0/t/response/TestAPR/finfo.pm
  
  Index: finfo.pm
  ===
  RCS file: /home/cvs/modperl-2.0/t/response/TestAPR/finfo.pm,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- finfo.pm  1 Dec 2003 19:16:51 -   1.6
  +++ finfo.pm  16 Dec 2003 18:13:04 -  1.7
  @@ -56,8 +56,9 @@
undef, $size, $atime, $mtime, $ctime) = stat $file;
   
   # skip certain tests on Win32 (and others?)
  +# atime is wrong on NTFS, but OK on FAT32
   my %skip =  WIN32 ?
  -(map {$_ => 1} qw(device inode user group) ) : ();
  +(map {$_ => 1} qw(device inode user group atime) ) : ();
   
   # compare stat fields between perl and apr_stat
   {
  
  
  


cvs commit: modperl-2.0/t/filter/TestFilter both_str_req_proxy.pm

2003-12-16 Thread stas
stas2003/12/16 16:53:58

  Modified:t/response/TestModules proxy.pm
   t/filter/TestFilter both_str_req_proxy.pm
  Log:
  no need to dup the whole config section to support 2.1, dup just the access
  container
  
  Revision  ChangesPath
  1.3   +14 -26modperl-2.0/t/response/TestModules/proxy.pm
  
  Index: proxy.pm
  ===
  RCS file: /home/cvs/modperl-2.0/t/response/TestModules/proxy.pm,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -u -r1.2 -r1.3
  --- proxy.pm  28 Oct 2003 18:32:48 -  1.2
  +++ proxy.pm  17 Dec 2003 00:53:58 -  1.3
  @@ -44,39 +44,27 @@
   __END__
   
   
  -# 2.0
  -
  -http://@servername@:@port@/*>
  +http://@servername@:@port@/*>
  +# 2.0
  +
   Order Deny,Allow
   Deny from all
   Allow from @servername@
  -
  -ProxyRequests On
  -
  -PerlModule TestModules::proxy
  -PerlTransHandler TestModules::proxy::proxy
  -
  -SetHandler modperl
  -PerlResponseHandler TestModules::proxy::response
  -
  -
  -
  -# 2.1
  -
  -http://@servername@:@port@/*>
  +
  +# 2.1
  +
   Order Deny,Allow
   Deny from all
   Allow from @servername@
  -
  -ProxyRequests On
  +
  +
   
  -PerlModule TestModules::proxy
  -PerlTransHandler TestModules::proxy::proxy
  -
  -SetHandler modperl
  -PerlResponseHandler TestModules::proxy::response
  -
  -
  +PerlModule TestModules::proxy
  +PerlTransHandler TestModules::proxy::proxy
  +
  +SetHandler modperl
  +PerlResponseHandler TestModules::proxy::response
  +
   
   
   
  
  
  
  1.4   +14 -25modperl-2.0/t/filter/TestFilter/both_str_req_proxy.pm
  
  Index: both_str_req_proxy.pm
  ===
  RCS file: /home/cvs/modperl-2.0/t/filter/TestFilter/both_str_req_proxy.pm,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -u -r1.3 -r1.4
  --- both_str_req_proxy.pm 2 Dec 2003 15:49:22 -   1.3
  +++ both_str_req_proxy.pm 17 Dec 2003 00:53:58 -  1.4
  @@ -58,39 +58,28 @@
   __DATA__
   
   
  -
  -# 2.0
  -
  -http://@servername@:@port@/*>
  +http://@servername@:@port@/*>
  +# 2.0
  +
   Order Deny,Allow
   Deny from all
   Allow from @servername@
  -
  -ProxyRequests Off
  -RewriteEngine On
  -
  -ProxyPass/TestFilter__both_str_req_proxy/ \
  -http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
  -ProxyPassReverse /TestFilter__both_str_req_proxy/ \
  -http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
  -
  -
  -# 2.1
  -
  -http://@servername@:@port@/*>
  +
  +# 2.1
  +
   Order Deny,Allow
   Deny from all
   Allow from @servername@
  -
  -ProxyRequests Off
  -RewriteEngine On
  +
  +
   
  -ProxyPass/TestFilter__both_str_req_proxy/ \
  -http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
  -ProxyPassReverse /TestFilter__both_str_req_proxy/ \
  -http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
  -
  +ProxyRequests Off
  +RewriteEngine On
   
  +ProxyPass/TestFilter__both_str_req_proxy/ \
  +http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
  +ProxyPassReverse /TestFilter__both_str_req_proxy/ \
  +http://@servername@:@port@/TestFilter__both_str_req_proxy_content/
   
   
   PerlModule TestFilter::both_str_req_proxy