With "make coccicheck", we generate contrib/coccinelle/*.cocci.patch files that contain changes suggested by semantic patches, but "make" succeeds. Admittedly, not many developers may run "make coccicheck" in the first place, but it makes it harder to notice when they do run it after they introduced an iffy piece of code. Check that the resulting cocci.patch files are all empty. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 97e8385b66..8f1e9424a7 100644 --- a/Makefile +++ b/Makefile @@ -3422,11 +3422,14 @@ endif coccicheck-test: $(COCCI_TEST_RES_GEN) coccicheck: coccicheck-test + ifdef SPATCH_CONCAT_COCCI -coccicheck: contrib/coccinelle/ALL.cocci.patch +COCCICHECK_PATCH_MUST_BE_EMPTY_FILES = contrib/coccinelle/ALL.cocci.patch else -coccicheck: $(COCCICHECK_PATCHES_INTREE) +COCCICHECK_PATCH_MUST_BE_EMPTY_FILES = $(COCCICHECK_PATCHES_INTREE) endif +coccicheck: $(COCCICHECK_PATCH_MUST_BE_EMPTY_FILES) + ! grep -q ^ $(COCCICHECK_PATCH_MUST_BE_EMPTY_FILES) /dev/null # See contrib/coccinelle/README coccicheck-pending: coccicheck-test Range-diff against v1: 1: 163a63f2cf ! 1: dee873e931 coccicheck: fail "make" when it fails @@ Commit message Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> ## Makefile ## -@@ Makefile: coccicheck-test: $(COCCI_TEST_RES_GEN) +@@ Makefile: endif + coccicheck-test: $(COCCI_TEST_RES_GEN) + coccicheck: coccicheck-test ++ ifdef SPATCH_CONCAT_COCCI - coccicheck: contrib/coccinelle/ALL.cocci.patch -+ ! test -s contrib/coccinelle/ALL.cocci.patch +-coccicheck: contrib/coccinelle/ALL.cocci.patch ++COCCICHECK_PATCH_MUST_BE_EMPTY_FILES = contrib/coccinelle/ALL.cocci.patch else - coccicheck: $(COCCICHECK_PATCHES_INTREE) -+ test $$(cat $(COCCICHECK_PATCHES_INTREE) | wc -c) = 0 +-coccicheck: $(COCCICHECK_PATCHES_INTREE) ++COCCICHECK_PATCH_MUST_BE_EMPTY_FILES = $(COCCICHECK_PATCHES_INTREE) endif ++coccicheck: $(COCCICHECK_PATCH_MUST_BE_EMPTY_FILES) ++ ! grep -q ^ $(COCCICHECK_PATCH_MUST_BE_EMPTY_FILES) /dev/null # See contrib/coccinelle/README + coccicheck-pending: coccicheck-test -- 2.50.0-243-g67b26bc0ed