diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-30 19:30:38 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-05-30 19:30:38 +0000 |
commit | 2c507cce96b600e9c7260ee1c0b8bf1330cd3cff (patch) | |
tree | b677c302e456a9fad4b1eb508ee3415bc4aa1660 /regress/regress.pl | |
parent | 3d8bd1f3fd3008bd932346d3e5435b63f7f28972 (diff) | |
download | mandoc-2c507cce96b600e9c7260ee1c0b8bf1330cd3cff.tar.gz |
STYLE message about useless macros we don't want (Bt Tn Ud);
not a WARNING because they don't endanger portability
Diffstat (limited to 'regress/regress.pl')
-rwxr-xr-x | regress/regress.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/regress.pl b/regress/regress.pl index ce384b52..3d06556b 100755 --- a/regress/regress.pl +++ b/regress/regress.pl @@ -341,8 +341,8 @@ for my $testname (@lint_testnames) { if ($targets{lint}) { $count_lint++; $count_total++; - print "@mandoc -T lint $i\n" if $targets{verbose}; - syslint $o, @mandoc, qw(-T lint), $i + print "@mandoc -T lint -W all $i\n" if $targets{verbose}; + syslint $o, @mandoc, qw(-T lint -W all), $i and fail $subdir, $testname, 'lint:mandoc'; system @diff, $w, $o and fail $subdir, $testname, 'lint:diff'; |