Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0ED60200CFF for ; Tue, 22 Aug 2017 10:18:37 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0D5C7166775; Tue, 22 Aug 2017 08:18:37 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7A294166773 for ; Tue, 22 Aug 2017 10:18:36 +0200 (CEST) Received: (qmail 83949 invoked by uid 500); 22 Aug 2017 08:18:35 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 83940 invoked by uid 99); 22 Aug 2017 08:18:35 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Aug 2017 08:18:35 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 33D403A0024 for ; Tue, 22 Aug 2017 08:18:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1805731 - /httpd/test/framework/trunk/t/modules/proxy.t Date: Tue, 22 Aug 2017 08:18:31 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170822081834.33D403A0024@svn01-us-west.apache.org> archived-at: Tue, 22 Aug 2017 08:18:37 -0000 Author: jorton Date: Tue Aug 22 08:18:31 2017 New Revision: 1805731 URL: http://svn.apache.org/viewvc?rev=1805731&view=rev Log: Test ProxyAddHeaders with 2.4.28. Modified: httpd/test/framework/trunk/t/modules/proxy.t Modified: httpd/test/framework/trunk/t/modules/proxy.t URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/proxy.t?rev=1805731&r1=1805730&r2=1805731&view=diff ============================================================================== --- httpd/test/framework/trunk/t/modules/proxy.t (original) +++ httpd/test/framework/trunk/t/modules/proxy.t Tue Aug 22 08:18:31 2017 @@ -45,7 +45,7 @@ if (have_cgi) { ok t_cmp($r->content, qr/^APACHE_TEST_HOSTNAME = /, "reverse proxied env.pl response"); ok t_cmp($r->content, qr/HTTP_X_FORWARDED_FOR = /, "X-Forwarded-For enabled"); - if (have_min_apache_version('2.5.0')) { + if (have_min_apache_version('2.4.28')) { Apache::TestRequest::module("proxy_http_nofwd"); $r = GET("/reverse/modules/cgi/env.pl"); ok t_cmp($r->code, 200, "reverse proxy to env.pl without X-F-F"); @@ -54,7 +54,7 @@ if (have_cgi) { Apache::TestRequest::module("proxy_http_reverse"); } else { - skip "skipping tests with httpd < 2.5" foreach (1..2); + skip "skipping tests with httpd < 2.4.28" foreach (1..2); } $r = GET("/reverse/modules/cgi/env.pl?reverse-proxy");