]> git.ipfire.org Git - thirdparty/git.git/commit
t/perf/run: fix bin-wrappers computation
authorDerrick Stolee <dstolee@microsoft.com>
Tue, 21 Sep 2021 15:46:12 +0000 (15:46 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 22 Sep 2021 20:26:11 +0000 (13:26 -0700)
commitf9d65b04cd6bb30b2bc4afc752d3bdc17474196d
tree27367f0db31db1de860c253df40b78a065785c9d
parent99c99ed8259bf070cd8ae7b51a94904b7cf5c161
t/perf/run: fix bin-wrappers computation

The GIT_TEST_INSTALLED was moved from perf-lib.sh to run in df0f5021
(perf-lib.sh: remove GIT_TEST_INSTALLED from perf-lib.sh, 2019-05-07)
and that included a change to how it inspected the existence of a
bin-wrappers directory. However, that included a typo that made the
match of bin-wrappers never work. Specifically, the assignment was

mydir_abs_wrappers="$mydir_abs_wrappers/bin-wrappers"

which uses the same variable before it is initialized. By changing it to

mydir_abs_wrappers="$mydir_abs/bin-wrappers"

We can correctly use the bin-wrappers directory.

This is critical to successfully computing performance of commands that
execute subcommands. The bin-wrappers ensure that the --exec-path is set
correctly.

Reported-by: Victoria Dye <vdye@github.com>
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/run