From e38efac87d4542d2368ad772d1e9dd51ab650acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 8 Aug 2010 14:49:27 +0000 Subject: t/README: Add SMOKE_{COMMENT,TAGS}= to smoke_report target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Junio C Hamano --- t/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 't/Makefile') diff --git a/t/Makefile b/t/Makefile index 00f64820c..b81fb91b5 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 \ -- cgit v1.2.1