Skip to content

Commit 86b93bd

Browse files
Martin Ågrengitster
Martin Ågren
authored andcommitted
t0211: add missing LIBCURL prereq
After building Git with NO_LIBCURL, we're lacking `git remote-http` and `git http-fetch`, so when we test that they trace as they should, we're bound to fail. Add the LIBCURL prereq to those tests. Signed-off-by: Martin Ågren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dc542fc commit 86b93bd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

t/t0211-trace2-perf.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,8 @@ test_expect_success 'expect def_params for query command' '
337337
# remote-curl.c rather than git.c. Confirm that we get def_param
338338
# events from both layers.
339339
#
340-
test_expect_success 'expect def_params for remote-curl and _run_dashed_' '
340+
test_expect_success LIBCURL \
341+
'expect def_params for remote-curl and _run_dashed_' '
341342
test_when_finished "rm prop.perf actual" &&
342343
343344
test_config_global "trace2.configParams" "cfg.prop.*" &&
@@ -366,7 +367,8 @@ test_expect_success 'expect def_params for remote-curl and _run_dashed_' '
366367
# an executable built from http-fetch.c. Confirm that we get
367368
# def_param events from both layers.
368369
#
369-
test_expect_success 'expect def_params for http-fetch and _run_dashed_' '
370+
test_expect_success LIBCURL \
371+
'expect def_params for http-fetch and _run_dashed_' '
370372
test_when_finished "rm prop.perf actual" &&
371373
372374
test_config_global "trace2.configParams" "cfg.prop.*" &&

0 commit comments

Comments
 (0)