[Privoxy-commits] [privoxy] 12/17: runtests-wrapper.sh: Explicitly set the path to the curl binary
User Git
git at git.privoxy.org
Wed Dec 10 08:04:37 CET 2025
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 3a490fc0863fa004c7b9b0ea657698a8f714cc9e
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Tue Dec 9 14:29:02 2025 +0100
runtests-wrapper.sh: Explicitly set the path to the curl binary
... using an absolute path. Otherwise runtests.pl uses a relative
path in its output which can be confusing.
---
tests/cts/runtests-wrapper.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/cts/runtests-wrapper.sh b/tests/cts/runtests-wrapper.sh
index 6221b31e..c3144d9c 100755
--- a/tests/cts/runtests-wrapper.sh
+++ b/tests/cts/runtests-wrapper.sh
@@ -118,7 +118,9 @@ runtests_wrapper() {
extra_args="$*"
cd "${curl_source_directory}/tests" || exit 1
- ./runtests.pl -L "${privoxy_lib}" $proxy_args $exclude_file_args $testdir_args $a_flag -n $keyword !skip $extra_args
+ ./runtests.pl -c "${curl_source_directory}/src/curl" \
+ -L "${privoxy_lib}" \
+ $proxy_args $exclude_file_args $testdir_args $a_flag -n $keyword !skip $extra_args
}
main() {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list