summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorChristian Couder <christian.couder@gmail.com>2018-01-05 09:12:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-01-05 20:31:07 (GMT)
commit6f5ecad6a5566ac8dfb30c58330d53ef6cd5ad03 (patch)
tree057411a67060965e046eaf76ec8ac0645963face /t
parent5d445f3416ef916c519e7d2a7796c4541e766033 (diff)
downloadgit-6f5ecad6a5566ac8dfb30c58330d53ef6cd5ad03.zip
git-6f5ecad6a5566ac8dfb30c58330d53ef6cd5ad03.tar.gz
git-6f5ecad6a5566ac8dfb30c58330d53ef6cd5ad03.tar.bz2
perf/aggregate: fix checking ENV{GIT_PERF_SUBSECTION}
The way we check ENV{GIT_PERF_SUBSECTION} could trigger comparison between undef and "" that may be flagged by use of strict & warnings. Let's fix that. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/perf/aggregate.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/perf/aggregate.perl b/t/perf/aggregate.perl
index e401208..769d418 100755
--- a/t/perf/aggregate.perl
+++ b/t/perf/aggregate.perl
@@ -70,7 +70,7 @@ if (not @tests) {
}
my $resultsdir = "test-results";
-if ($ENV{GIT_PERF_SUBSECTION} ne "") {
+if (exists $ENV{GIT_PERF_SUBSECTION} and $ENV{GIT_PERF_SUBSECTION} ne "") {
$resultsdir .= "/" . $ENV{GIT_PERF_SUBSECTION};
}