sipb-www
/
ikiwiki.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
(no commit message)
[ikiwiki.git]
/
t
/
syntax.t
diff --git
a/t/syntax.t
b/t/syntax.t
index 2462464ef26c3811e7e85a17068656082f25fe81..01346a33842d256ea6fd6f1d7b390f686ebbd8c7 100755
(executable)
--- a/
t/syntax.t
+++ b/
t/syntax.t
@@
-1,19
+1,18
@@
#!/usr/bin/perl
use warnings;
use strict;
#!/usr/bin/perl
use warnings;
use strict;
-use Test;
+use Test
::More
;
-my @progs="ikiwiki.
pl
";
+my @progs="ikiwiki.
in
";
my @libs="IkiWiki.pm";
my @libs="IkiWiki.pm";
-push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm`;
+# monotone, external, amazon_s3 skipped since they need perl modules
+push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v IkiWiki/Rcs/monotone.pm | grep -v IkiWiki/Plugin/external.pm | grep -v IkiWiki/Plugin/amazon_s3.pm`;
plan(tests => (@progs + @libs));
foreach my $file (@progs) {
plan(tests => (@progs + @libs));
foreach my $file (@progs) {
- print "# Testing $file\n";
- ok(system("perl -T -c $file >/dev/null 2>&1"), 0);
+ ok(system("perl -T -c $file >/dev/null 2>&1") eq 0, $file);
}
foreach my $file (@libs) {
}
foreach my $file (@libs) {
- print "# Testing $file\n";
- ok(system("perl -c $file >/dev/null 2>&1"), 0);
+ ok(system("perl -c $file >/dev/null 2>&1") eq 0, $file);
}
}