summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-08-19 06:12:03 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-08-19 16:59:22 (GMT)
commit93b5393611e9e1892e2eaea9b844c505172ac460 (patch)
tree048489b67654ebd2f5377206521715b7dd2be8bb /Makefile
parent066dd2632acf11a348ff209b79f42c1a87a71fbb (diff)
downloadgit-93b5393611e9e1892e2eaea9b844c505172ac460.zip
git-93b5393611e9e1892e2eaea9b844c505172ac460.tar.gz
git-93b5393611e9e1892e2eaea9b844c505172ac460.tar.bz2
Makefile: make perf tests optional for profile build
The perf tests need a repository to operate on; if none is defined, we fall back to the repository containing our build directory. That fails, though, for an exported tarball of git.git, which has no repository. Since 5d7fd6d we run the perf tests as part of "make profile". Therefore "make profile" fails out of the box on released tarballs of v2.1.0. We can fix this by making the perf tests optional; if they are skipped, we still run the regular test suite, which should give a lot of profile data (and is what we used to do prior to 5d7fd6d anyway). Signed-off-by: Jeff King <peff@peff.net> Acked-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a760402..fd11380 100644
--- a/Makefile
+++ b/Makefile
@@ -1649,7 +1649,11 @@ endif
profile:: profile-clean
$(MAKE) PROFILE=GEN all
$(MAKE) PROFILE=GEN -j1 test
- $(MAKE) PROFILE=GEN -j1 perf
+ @if test -n "$$GIT_PERF_REPO" || test -d .git; then \
+ $(MAKE) PROFILE=GEN -j1 perf; \
+ else \
+ echo "Skipping profile of perf tests..."; \
+ fi
$(MAKE) PROFILE=USE all
profile-fast: profile-clean