You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2011/08/28 23:09:52 UTC

svn commit: r1162593 - /httpd/test/framework/trunk/t/apache/byterange3.t

Author: covener
Date: Sun Aug 28 21:09:51 2011
New Revision: 1162593

URL: http://svn.apache.org/viewvc?rev=1162593&view=rev
Log:
skip test that relies on merging behavior if < 2.3.15, in an unusual way.


Modified:
    httpd/test/framework/trunk/t/apache/byterange3.t

Modified: httpd/test/framework/trunk/t/apache/byterange3.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/apache/byterange3.t?rev=1162593&r1=1162592&r2=1162593&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/apache/byterange3.t (original)
+++ httpd/test/framework/trunk/t/apache/byterange3.t Sun Aug 28 21:09:51 2011
@@ -5,7 +5,14 @@ use Apache::Test;
 use Apache::TestRequest ();
 use Apache::TestCommon ();
 
-Apache::TestCommon::run_files_test(\&verify, 1);
+# test merging of byte ranges
+
+if (Apache::Test::need_min_apache_version("2.3.15")) { 
+  Apache::TestCommon::run_files_test(\&verify, 1);
+}
+else { 
+  plan tests => 0;
+}
 
 sub verify {
     my($ua, $url, $file) = @_;