summaryrefslogtreecommitdiff
path: root/t/Makefile
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2010-08-08 14:49:27 +0000
committerJunio C Hamano <gitster@pobox.com>2010-08-18 12:42:14 -0700
commite38efac87d4542d2368ad772d1e9dd51ab650acb (patch)
tree4f49d8a91f6568a848fe089741cb3af5f6b0c16a /t/Makefile
parent4678a5cd71312f27b77228ddc398a6f0fa2e88a0 (diff)
downloadgit-e38efac87d4542d2368ad772d1e9dd51ab650acb.tar.gz
t/README: Add SMOKE_{COMMENT,TAGS}= to smoke_report target
The smoke server supports a free form text field with comments about a report, and a comma delimited list of tags. Change the smoke_report target to expose this functionality. Now smokers can send more data that explains and categorizes the reports they're submitting. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/Makefile')
-rw-r--r--t/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/Makefile b/t/Makefile
index 00f64820c2..b81fb91b52 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -69,6 +69,12 @@ SMOKE_UPLOAD_FLAGS =
ifdef SMOKE_USERNAME
SMOKE_UPLOAD_FLAGS += -F username="$(SMOKE_USERNAME)" -F password="$(SMOKE_PASSWORD)"
endif
+ifdef SMOKE_COMMENT
+ SMOKE_UPLOAD_FLAGS += -F comments="$(SMOKE_COMMENT)"
+endif
+ifdef SMOKE_TAGS
+ SMOKE_UPLOAD_FLAGS += -F tags="$(SMOKE_TAGS)"
+endif
smoke_report: smoke
curl \