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 jo...@apache.org on 2005/02/23 14:52:09 UTC

svn commit: r155008 - httpd/test/trunk/perl-framework/t/protocol/nntp-like.t

Author: jorton
Date: Wed Feb 23 05:52:07 2005
New Revision: 155008

URL: http://svn.apache.org/viewcvs?view=rev&rev=155008
Log:
Skip for 2.1 on Linux due to defered accept being incompatible
with NNTP.

Modified:
    httpd/test/trunk/perl-framework/t/protocol/nntp-like.t

Modified: httpd/test/trunk/perl-framework/t/protocol/nntp-like.t
URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/protocol/nntp-like.t?view=diff&r1=155007&r2=155008
==============================================================================
--- httpd/test/trunk/perl-framework/t/protocol/nntp-like.t (original)
+++ httpd/test/trunk/perl-framework/t/protocol/nntp-like.t Wed Feb 23 05:52:07 2005
@@ -17,8 +17,11 @@
     unshift @modules, 'mod_nntp_like_ssl';
 }
 
-plan tests => $tests, ['mod_nntp_like'];
-
+plan tests => $tests, need('mod_nntp_like',
+                           { "deferred accept() prohibits testing with 2.1" =>
+                                 sub { !have_min_apache_version('2.1.0') 
+                                           || $^O ne "linux" } } );
+                               
 for my $module (@modules) {
     print "testing $module\n";