summaryrefslogtreecommitdiff
path: root/t/syntax
diff options
context:
space:
mode:
Diffstat (limited to 't/syntax')
-rwxr-xr-xt/syntax12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/syntax b/t/syntax
new file mode 100755
index 00000000..92455457
--- /dev/null
+++ b/t/syntax
@@ -0,0 +1,12 @@
+#!/usr/bin/perl
+use Test;
+
+my @progs=grep { -x $_ } glob("dh_*"), "dh";
+my @libs=(glob("Debian/Debhelper/*.pm"), glob("Debian/Debhelper/*/*.pm"));
+
+plan(tests => (@progs + @libs));
+
+foreach my $file (@progs, @libs) {
+ print "# Testing $file\n";
+ ok(system("perl -c $file >/dev/null 2>&1"), 0);
+}