From: Don Armstrong Date: Tue, 12 Mar 2013 21:21:03 +0000 (-0700) Subject: add test rule to run individual tests more easily X-Git-Tag: release/2.6.0~316 X-Git-Url: https://git.donarmstrong.com/?p=debbugs.git;a=commitdiff_plain;h=4a2797ed08fcccdcbe515ab5b35f7cb3fb89a16d add test rule to run individual tests more easily --- diff --git a/Makefile b/Makefile index 7d427c6..5876704 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,9 @@ build: test: $(PERL) -MTest::Harness -I. -e 'runtests(glob(q(t/*.t)))' +test_%: t/%.t + $(PERL) -MTest::Harness -I. -e 'runtests(q($<))' + testcover: PERLLIB=t/cover_lib/ cover -test