-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
t/perf/run: fix bin-wrappers computation #1044
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 <[email protected]> Signed-off-by: Derrick Stolee <[email protected]>
/submit |
Submitted as [email protected] 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: [email protected]
cc: [email protected]
cc: [email protected]
cc: [email protected]
cc: Taylor Blau [email protected]