aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/regress/tbl/layout/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2020-09-01 18:25:27 +0000
committerIngo Schwarze <schwarze@openbsd.org>2020-09-01 18:25:27 +0000
commit835540e0c710d0fcef85cc4e79f3200d559bc2c9 (patch)
tree892f10a95a8c810db492fb001ba07a501400fda8 /regress/tbl/layout/Makefile
parent74317de919ffbe0b012c3dc4777d6b55037b810a (diff)
downloadmandoc-835540e0c710d0fcef85cc4e79f3200d559bc2c9.tar.gz
mandoc-835540e0c710d0fcef85cc4e79f3200d559bc2c9.tar.zst
mandoc-835540e0c710d0fcef85cc4e79f3200d559bc2c9.zip
Ignore unreasonably large spacing modifiers in tbl layouts.
Jan Schreiber <jes at posteo dot de> ran afl on mandoc and it turned out mandoc tried to use spacing modifiers so large that they would trigger assertion failures in term_ascii.c, function locale_advance().
Diffstat (limited to 'regress/tbl/layout/Makefile')
-rw-r--r--regress/tbl/layout/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/regress/tbl/layout/Makefile b/regress/tbl/layout/Makefile
index 2cff5851..61fb6ad4 100644
--- a/regress/tbl/layout/Makefile
+++ b/regress/tbl/layout/Makefile
@@ -1,15 +1,17 @@
# $OpenBSD: Makefile,v 1.6 2020/01/11 20:56:26 schwarze Exp $
REGRESS_TARGETS = badspan center complex empty emptycol emptyline
-REGRESS_TARGETS += lines lines-nogroff numbers shortlines span
-LINT_TARGETS = badspan complex empty
+REGRESS_TARGETS += lines lines-nogroff numbers
+REGRESS_TARGETS += shortlines spacing spacing-nogroff span
+LINT_TARGETS = badspan complex empty spacing-nogroff
-# groff-1.22.3 defects:
+# groff-1.22.4 defects:
# - When the layout is completely empty,
# GNU eqn produces no output whatsoever for the whole table.
# - When there is no horizontal line at the top,
# vertical lines extend beyond the top of the table.
+# - Excessive spacing modifiers in the layout are honoured.
-SKIP_GROFF = empty lines-nogroff
+SKIP_GROFF = empty lines-nogroff spacing-nogroff
.include <bsd.regress.mk>