diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-09-11 18:56:28 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-09-11 18:56:28 -0400 |
commit | 2d43eda27dce947bff8c86b4a2757589867fba23 (patch) | |
tree | 76cedc7738bbc492917abd37abd60c447769cf40 /t | |
parent | e62e7352777ffee53c0f94f1eb3a523e2cdf6abe (diff) | |
download | ikiwiki-2d43eda27dce947bff8c86b4a2757589867fba23.tar ikiwiki-2d43eda27dce947bff8c86b4a2757589867fba23.tar.gz |
display broken links on failure
Diffstat (limited to 't')
-rwxr-xr-x | t/basewiki_brokenlinks.t | 7 |
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")); |