From: Joey Hess Date: Tue, 21 Oct 2008 18:51:04 +0000 (-0400) Subject: include dh in syntax check X-Git-Tag: 7.1.0~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=39c49cbc2c60982dfa017c6b0fcd9f4f57327214;p=debhelper.git include dh in syntax check --- diff --git a/t/syntax b/t/syntax index 76fd46a..f80fa97 100755 --- a/t/syntax +++ b/t/syntax @@ -1,7 +1,7 @@ #!/usr/bin/perl use Test; -my @progs=grep { -x $_ } glob("dh_*"); +my @progs=grep { -x $_ } glob("dh_*"), "dh"; my @libs=glob("Debian/Debhelper/*.pm"); plan(tests => (@progs + @libs));