aboutsummaryrefslogtreecommitdiff
path: root/t/basewiki_brokenlinks.t
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-11 18:56:28 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-11 18:56:28 -0400
commit2d43eda27dce947bff8c86b4a2757589867fba23 (patch)
tree76cedc7738bbc492917abd37abd60c447769cf40 /t/basewiki_brokenlinks.t
parente62e7352777ffee53c0f94f1eb3a523e2cdf6abe (diff)
downloadikiwiki-2d43eda27dce947bff8c86b4a2757589867fba23.tar
ikiwiki-2d43eda27dce947bff8c86b4a2757589867fba23.tar.gz
display broken links on failure
Diffstat (limited to 't/basewiki_brokenlinks.t')
-rwxr-xr-xt/basewiki_brokenlinks.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/basewiki_brokenlinks.t b/t/basewiki_brokenlinks.t
index 9753122a0..061841482 100755
--- a/t/basewiki_brokenlinks.t
+++ b/t/basewiki_brokenlinks.t
@@ -7,6 +7,11 @@ ok(! system("mkdir t/tmp"));
ok(! system("make -s ikiwiki.out"));
ok(! system("make extra_install DESTDIR=`pwd`/t/tmp/install PREFIX=/usr >/dev/null"));
ok(! system("LC_ALL=C perl -T -I. ./ikiwiki.out -plugin smiley -plugin brokenlinks -rebuild -underlaydir=t/tmp/install/usr/share/ikiwiki/basewiki -templatedir=templates t/basewiki_brokenlinks t/tmp/out"));
-ok(`grep 'no broken links' t/tmp/out/index.html`);
+my $result=`grep 'no broken links' t/tmp/out/index.html`;
+ok(length($result));
+if (! length $result) {
+ print STDERR "broken links found:";
+ system("grep '<li>' t/tmp/out/index.html >&2");
+}
ok(-e "t/tmp/out/style.css");
ok(! system("rm -rf t/tmp t/basewiki_brokenlinks/.ikiwiki"));