From: Joe Orton Date: Tue, 4 Aug 2026 14:58:59 +0000 (+0000) Subject: * test/pytest_suite/tests/t/ab/test_base.py (_ab_path): Don't X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=211912c86b2558249994dbf49560c61671cbbfa6;p=thirdparty%2Fapache%2Fhttpd.git * test/pytest_suite/tests/t/ab/test_base.py (_ab_path): Don't resolve() the httpd path before deriving ab's; it follows the check/bin/httpd symlink out of the check/ tree, so ab was never found there. Assisted-by: Claude Sonnet 5 GitHub: PR #701 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1936872 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/pytest_suite/tests/t/ab/test_base.py b/test/pytest_suite/tests/t/ab/test_base.py index e672e804b0..1d7e2e2ee7 100644 --- a/test/pytest_suite/tests/t/ab/test_base.py +++ b/test/pytest_suite/tests/t/ab/test_base.py @@ -18,7 +18,7 @@ import pytest def _ab_path(http) -> Path: - return Path(http.config.info.httpd).resolve().parent / "ab" + return Path(http.config.info.httpd).parent / "ab" def _run_ab(ab: Path, url: str) -> subprocess.CompletedProcess: