The testsuite can be run on a specific testcase directly via the Makefile via a 'validation/%.t' pattern rule but this rule had no dependency on the programs being tested and thus could be run on a previous version. Fix this by adding the needed dependencies. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ae0a33f0..dab38aacd 100644 --- a/Makefile +++ b/Makefile @@ -214,7 +214,7 @@ version.h: FORCE check: all $(Q)cd validation && ./test-suite -validation/%.t: FORCE +validation/%.t: $(PROGRAMS) @validation/test-suite single $*.c -- 2.15.0 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html