You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2020/06/19 11:43:27 UTC

svn commit: r1878984 - /httpd/test/framework/trunk/t/apache/http_strict.t

Author: rpluem
Date: Fri Jun 19 11:43:27 2020
New Revision: 1878984

URL: http://svn.apache.org/viewvc?rev=1878984&view=rev
Log:
* Revert r1878937 as a result of
  https://lists.apache.org/thread.html/red499ac4750b88e5943c25abb86434c59dfff4d4f386ffc53742755d%40%3Cdev.httpd.apache.org%3E
  and
  https://lists.apache.org/thread.html/ra79eee019e2357703b0ea81153458a29817b58ce92e3605949eee1fe%40%3Cdev.httpd.apache.org%3E

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

Modified: httpd/test/framework/trunk/t/apache/http_strict.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/apache/http_strict.t?rev=1878984&r1=1878983&r2=1878984&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/apache/http_strict.t (original)
+++ httpd/test/framework/trunk/t/apache/http_strict.t Fri Jun 19 11:43:27 2020
@@ -12,10 +12,6 @@ my $test_underscore = defined(&need_min_
                 need_min_apache_fix("2.4.34", "2.5.1") :
                 need_min_apache_version('2.4.34');
 
-my $test_unsupported_version = defined(&need_min_apache_fix) ?
-                need_min_apache_fix("2.5.1") :
-                need_min_apache_version('2.5.1');
-
 # possible expected results:
 #   0:       any HTTP error
 #   1:       any HTTP success
@@ -36,7 +32,7 @@ my @test_cases = (
     [ "GET\t/ HTTP/1.0\r\n\r\n"                               => 400],
     [ "GET / HTT/1.0\r\n\r\n"                                 =>   0],
     [ "GET / HTTP/1.0\r\nHost: localhost\r\n\r\n"             =>   1],
-    [ "GET / HTTP/2.0\r\nHost: localhost\r\n\r\n"             =>   1, 505, $test_unsupported_version],
+    [ "GET / HTTP/2.0\r\nHost: localhost\r\n\r\n"             =>   1],
     [ "GET / HTTP/1.2\r\nHost: localhost\r\n\r\n"             =>   1],
     [ "GET / HTTP/1.11\r\nHost: localhost\r\n\r\n"            => 400],
     [ "GET / HTTP/10.0\r\nHost: localhost\r\n\r\n"            => 400],