diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-09-23 19:33:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-09-23 19:33:00 +0200 |
commit | d497bd9d597a21430da541a9f5414784ad26e48b (patch) | |
tree | 90af0cc7315cf95e4339dfe08fa7d0312bbf861e | |
parent | Merge branch 'jc/doc-skip-fetch-all-and-prefetch' into maint-2.46 (diff) | |
parent | t0211: add missing LIBCURL prereq (diff) | |
download | git-d497bd9d597a21430da541a9f5414784ad26e48b.tar.xz git-d497bd9d597a21430da541a9f5414784ad26e48b.zip |
Merge branch 'ma/test-libcurl-prereq' into maint-2.46
Test portability fix.
* ma/test-libcurl-prereq:
t0211: add missing LIBCURL prereq
t1517: add missing LIBCURL prereq
-rwxr-xr-x | t/t0211-trace2-perf.sh | 6 | ||||
-rwxr-xr-x | t/t1517-outside-repo.sh | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/t/t0211-trace2-perf.sh b/t/t0211-trace2-perf.sh index 070fe7a5da..dddc130560 100755 --- a/t/t0211-trace2-perf.sh +++ b/t/t0211-trace2-perf.sh @@ -337,7 +337,8 @@ test_expect_success 'expect def_params for query command' ' # remote-curl.c rather than git.c. Confirm that we get def_param # events from both layers. # -test_expect_success 'expect def_params for remote-curl and _run_dashed_' ' +test_expect_success LIBCURL \ + 'expect def_params for remote-curl and _run_dashed_' ' test_when_finished "rm prop.perf actual" && test_config_global "trace2.configParams" "cfg.prop.*" && @@ -366,7 +367,8 @@ test_expect_success 'expect def_params for remote-curl and _run_dashed_' ' # an executable built from http-fetch.c. Confirm that we get # def_param events from both layers. # -test_expect_success 'expect def_params for http-fetch and _run_dashed_' ' +test_expect_success LIBCURL \ + 'expect def_params for http-fetch and _run_dashed_' ' test_when_finished "rm prop.perf actual" && test_config_global "trace2.configParams" "cfg.prop.*" && diff --git a/t/t1517-outside-repo.sh b/t/t1517-outside-repo.sh index 990a036582..342defbb61 100755 --- a/t/t1517-outside-repo.sh +++ b/t/t1517-outside-repo.sh @@ -98,7 +98,7 @@ test_expect_success 'stripspace outside repository' ' nongit git stripspace -s </dev/null ' -test_expect_success 'remote-http outside repository' ' +test_expect_success LIBCURL 'remote-http outside repository' ' test_must_fail git remote-http 2>actual && test_grep "^error: remote-curl" actual && ( |