From: Don Armstrong Date: Thu, 14 Mar 2013 15:34:09 +0000 (-0700) Subject: Merge branch 'master' into don/fix_encoding X-Git-Tag: release/2.6.0~312^2~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7d96d08af28cfc7a0619146d9b232d6b7ced0cf7;hp=4a33202f6e53ef347c9c1b5565d8902c4bc60fee;p=debbugs.git Merge branch 'master' into don/fix_encoding --- 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 diff --git a/scripts/gen-indices b/scripts/gen-indices index d2cd904..0fe8ea8 100755 --- a/scripts/gen-indices +++ b/scripts/gen-indices @@ -41,7 +41,7 @@ gen-indices - Generates index files for the cgi scripts =over -=itme B<--quick> +=item B<--quick> Only update changed bugs diff --git a/t/01_pod.t b/t/01_pod.t index 1d7c422..8fb590f 100644 --- a/t/01_pod.t +++ b/t/01_pod.t @@ -2,4 +2,4 @@ use Test::More; eval "use Test::Pod 1.00"; plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; -all_pod_files_ok(); +all_pod_files_ok(all_pod_files('.'));