citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 2a6f6a85bed06ee5cae60ede228e64267e63afed
parent 205f8abc1f71cc882bd067531d113b678cd9f6da
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Mon,  4 Apr 2016 19:41:27 -0600

www: add link checker using wget

Diffstat:
Mwww/t/validate.t | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/t/validate.t b/www/t/validate.t @@ -1,5 +1,5 @@ use strict; use Test::More tests => 1; -my $ret = system( "validate www/index.html" ); -is( $ret, 0, "www/index.html validates"); +my $ret = system( "webtidy index.html" ); +is( $ret, 0, "index.html is tidy" );