From 2d43eda27dce947bff8c86b4a2757589867fba23 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 11 Sep 2008 18:56:28 -0400 Subject: display broken links on failure --- t/basewiki_brokenlinks.t | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 't/basewiki_brokenlinks.t') 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 '
  • ' t/tmp/out/index.html >&2"); +} ok(-e "t/tmp/out/style.css"); ok(! system("rm -rf t/tmp t/basewiki_brokenlinks/.ikiwiki")); -- cgit v1.2.3