Author: stas
Date: Tue Dec  7 18:33:42 2004
New Revision: 111194

URL: http://svn.apache.org/viewcvs?view=rev&rev=111194
Log:
proxy tests need proxy_http.so to be loaded (if it wasn't statically built 
in).
Contributed by: "Christopher H. Laco" <[EMAIL PROTECTED]>

Modified:
   perl/modperl/trunk/t/filter/both_str_req_proxy.t
   perl/modperl/trunk/t/modules/proxy.t

Modified: perl/modperl/trunk/t/filter/both_str_req_proxy.t
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/t/filter/both_str_req_proxy.t?view=diff&rev=111194&p1=perl/modperl/trunk/t/filter/both_str_req_proxy.t&r1=111193&p2=perl/modperl/trunk/t/filter/both_str_req_proxy.t&r2=111194
==============================================================================
--- perl/modperl/trunk/t/filter/both_str_req_proxy.t    (original)
+++ perl/modperl/trunk/t/filter/both_str_req_proxy.t    Tue Dec  7 18:33:42 2004
@@ -5,7 +5,8 @@
 use Apache::TestRequest;
 use Apache::TestUtil;
 
-plan tests => 1, need need_module('proxy'), need_access;
+plan tests => 1, need need_module(qw(proxy proxy_http.c)),
+    need_access;
 
 my $data = join ' ', 'A'..'Z', 0..9;
 my $expected = lc $data; # that's what the input filter does

Modified: perl/modperl/trunk/t/modules/proxy.t
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/t/modules/proxy.t?view=diff&rev=111194&p1=perl/modperl/trunk/t/modules/proxy.t&r1=111193&p2=perl/modperl/trunk/t/modules/proxy.t&r2=111194
==============================================================================
--- perl/modperl/trunk/t/modules/proxy.t        (original)
+++ perl/modperl/trunk/t/modules/proxy.t        Tue Dec  7 18:33:42 2004
@@ -10,8 +10,8 @@
 
 t_debug("connecting to $url");
 
-plan tests => 1, (need_module('proxy') &&
-                  need_access);
+plan tests => 1, need need_module(qw(proxy proxy_http.c)),
+    need_access;
 
 my $expected = "ok";
 my $received = GET_BODY_ASSERT $url;

Reply via email to