This is an automated email from the git hooks/post-receive script. nthykier pushed a commit to branch master in repository javatools.
commit 292ac87234063bec63141ad533157dde95f823bf Author: Niels Thykier <[email protected]> Date: Tue Sep 24 13:34:24 2013 +0200 t: Only check perl files Signed-off-by: Niels Thykier <[email protected]> --- t/strict.t | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/t/strict.t b/t/strict.t index 5bf5560..878737b 100755 --- a/t/strict.t +++ b/t/strict.t @@ -7,4 +7,18 @@ use Test::More; eval 'use Test::Strict'; plan skip_all => 'Test::Strict required to run this test' if $@; -all_perl_files_ok(); +my @FILES = qw( + jh_compilefeatures + jh_generateorbitdir + jh_installeclipse + jh_manifest + jh_scanjavadoc + jh_setupenvironment +); + +for my $file (@FILES) { + syntax_ok($file); + strict_ok($file); +} + +all_perl_files_ok('lib'); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/javatools.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

