From 293c4ddbf61f69a5cfb3a71f89cb3e48d3ccda7e Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Wed, 16 Apr 2014 11:44:55 +0200 Subject: Re-enable patch-wrapper test The patch-wrapper test was unconditionally disabled by commit 97200435 ("Only run test/patch-wrapper.test if the --with-patch-wrapper config option is used.") Re-enable this test when the --with-patch-wrapper config option is actually used. --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile.in') diff --git a/Makefile.in b/Makefile.in index fe709e5..7634761 100644 --- a/Makefile.in +++ b/Makefile.in @@ -122,6 +122,9 @@ NON_EXEC_IN := doc/quilt.1 doc/README quilt/scripts/patchfns quilt/scripts/utilf GIT_DESC := $(shell ./git-desc | sed -e 's:^v::') TESTS := $(filter-out test/patch-wrapper.test,$(wildcard test/*.test)) +ifneq ($(PATCH_WRAPPER),) +TESTS += test/patch-wrapper.test +endif DIRT += test/.depend $(wildcard test/.*.ok) # Settings for running the uninstalled version of quilt in the source tree: -- cgit