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 <noreply@anthropic.com>
GitHub: PR #701
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1936872 13f79535-47bb-0310-9956-
ffa450edef68
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: