svn commit: r1936872 - httpd/httpd/trunk/test/pytest_suite/tests/t/ab

[email protected] Tue, 04 Aug 2026 14:58:59 -0000
Newsgroups gmane.comp.apache.cvs
Message-ID <178585553933.2277429.9120649943838186093@svn03-he-fi>
Author: jorton
Date: Tue Aug  4 14:58:59 2026
New Revision: 1936872

Log:
* 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 <[email protected]>
GitHub: PR #701

Modified:
   httpd/httpd/trunk/test/pytest_suite/tests/t/ab/test_base.py

Modified: httpd/httpd/trunk/test/pytest_suite/tests/t/ab/test_base.py
==============================================================================
--- httpd/httpd/trunk/test/pytest_suite/tests/t/ab/test_base.py	Tue Aug  4 14:52:49 2026	(r1936871)
+++ httpd/httpd/trunk/test/pytest_suite/tests/t/ab/test_base.py	Tue Aug  4 14:58:59 2026	(r1936872)
@@ -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: