aboutsummaryrefslogtreecommitdiff
path: root/t/perf/perf-lib.sh
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2017-09-23 19:55:56 +0000
committerJunio C Hamano <gitster@pobox.com>2017-09-24 16:58:34 +0900
commite6b71539dedc13a5737ab97cf54b9f41f94cac24 (patch)
treea132180bb800af32efd23ffaa84643bc75e2fa2d /t/perf/perf-lib.sh
parente3d5e1207ea62dca81116a14abef4a537188865d (diff)
downloadgit-e6b71539dedc13a5737ab97cf54b9f41f94cac24.tar.gz
git-e6b71539dedc13a5737ab97cf54b9f41f94cac24.tar.xz
perf/run: add get_var_from_env_or_config()
Add get_var_from_env_or_config() to easily set variables from a config file if they are defined there and not already set. This can also set them to a default value if one is provided. As an example, use this function to set GIT_PERF_REPEAT_COUNT from the perf.repeatCount config option or from the default value. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/perf/perf-lib.sh')
-rw-r--r--t/perf/perf-lib.sh3
1 files changed, 0 insertions, 3 deletions
diff --git a/t/perf/perf-lib.sh b/t/perf/perf-lib.sh
index b50211b25..2f88fc12a 100644
--- a/t/perf/perf-lib.sh
+++ b/t/perf/perf-lib.sh
@@ -59,9 +59,6 @@ perf_results_dir=$TEST_OUTPUT_DIRECTORY/test-results
mkdir -p "$perf_results_dir"
rm -f "$perf_results_dir"/$(basename "$0" .sh).subtests
-if test -z "$GIT_PERF_REPEAT_COUNT"; then
- GIT_PERF_REPEAT_COUNT=3
-fi
die_if_build_dir_not_repo () {
if ! ( cd "$TEST_DIRECTORY/.." &&
git rev-parse --build-dir >/dev/null 2>&1 ); then