t/perf/run: fix bin-wrappers computation#1044
t/perf/run: fix bin-wrappers computation#1044derrickstolee wants to merge 1 commit intogitgitgadget:masterfrom
Conversation
The GIT_TEST_INSTALLED was moved from perf-lib.sh to run in df0f502 (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>
|
/submit |
|
Submitted as pull.1044.git.1632239172735.gitgitgadget@gmail.com To fetch this version into To fetch this version to local tag |
|
On the Git mailing list, Taylor Blau wrote (reply to this): |
|
User |
|
On the Git mailing list, Derrick Stolee wrote (reply to this): |
|
This branch is now known as |
|
This patch series was integrated into seen via git@132d623. |
|
This patch series was integrated into seen via git@947f0ee. |
|
This patch series was integrated into seen via git@886f9da. |
|
This patch series was integrated into seen via git@d06889b. |
|
There was a status update in the "New Topics" section about the branch Perf test fix. Will merge to 'next'. |
|
There was a status update in the "Cooking" section about the branch Perf test fix. Will merge to 'next'. |
|
This patch series was integrated into seen via git@1a35c2f. |
|
This patch series was integrated into next via git@18a2148. |
Found this while we were testing sparse index improvements to 'git stash', which uses a lot of subcommands.
Thanks,
-Stolee
cc: gitster@pobox.com
cc: avarab@gmail.com
cc: vdye@github.com
cc: stolee@gmail.com
cc: Taylor Blau me@ttaylorr.com