git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] makefile: add ability to run specific test files
@ 2014-07-09 22:36 Jacob Keller
  2014-07-09 22:59 ` Junio C Hamano
  0 siblings, 1 reply; 7+ messages in thread
From: Jacob Keller @ 2014-07-09 22:36 UTC (permalink / raw)
  To: git; +Cc: Jacob Keller

Running a specific test file manually does not obtain the exact
environment setup by the Makefile. Add ability to run any of the tests
in the t/ directory so that a user can more quickly debug a failing
test. Otherwise, the entire test suite needs to be run, which can take a
vary long time.

Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
---
 Makefile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 07ea1058379a..86bdc4ed1ee9 100644
--- a/Makefile
+++ b/Makefile
@@ -2262,13 +2262,18 @@ export TEST_NO_MALLOC_CHECK
 
 ### Testing rules
 
+T = $(sort $(wildcard t/t[0-9][0-9][0-9][0-9]-*.sh))
+
+$(T):
+	$(MAKE) -C t $(notdir $@)
+
 test: all
 	$(MAKE) -C t/ all
 
 perf: all
 	$(MAKE) -C t/perf/ all
 
-.PHONY: test perf
+.PHONY: test perf $(T)
 
 test-ctype$X: ctype.o
 
-- 
2.0.1.475.g9b8d714

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-07-10 22:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-09 22:36 [PATCH] makefile: add ability to run specific test files Jacob Keller
2014-07-09 22:59 ` Junio C Hamano
2014-07-09 23:49   ` Keller, Jacob E
2014-07-10  4:14     ` Junio C Hamano
2014-07-10 20:39       ` Keller, Jacob E
2014-07-10 20:44         ` Jeff King
2014-07-10 22:31       ` Keller, Jacob E

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).