1# $OpenBSD: Makefile,v 1.30 2016/08/20 14:43:39 schwarze Exp $ 2 3REGRESS_TARGETS = item inset diag ohang bullet dash enum hang tag 4REGRESS_TARGETS += column colNoIt extend nested offset secstart 5 6REGRESS_TARGETS += notype multitype badargs 7REGRESS_TARGETS += empty noIt emptyhead emptytag emptyitem multitag 8REGRESS_TARGETS += bareIt bareTa unclosed break breakingIt broken 9 10UTF8_TARGETS = dash 11 12LINT_TARGETS = column notype badargs 13LINT_TARGETS += empty noIt emptyhead emptytag emptyitem 14LINT_TARGETS += bareIt bareTa break breakingIt broken 15 16# groff-1.22.3 defects: 17# - lists with missing or late type ruin indentation 18# - empty lists ruin indentation and sometimes cause empty lines 19# - breaking lists continue indefinitely 20# - breaking items sometimes ruin indentation, sometimes abort processing 21# - breaking a list aborts processing 22# - empty -tag item heads lose the blank line and the indentation 23 24SKIP_GROFF ?= notype empty break breakingIt broken emptytag 25 26SKIP_TMAN ?= column colNoIt multitype multitag bareTa break broken 27 28# Fixing the indentation in long .IP and .TP tags in -man -Tascii 29# caused a minor regression in -Tman that is not trivial to fix, 30# so disable the related test for now. 31 32SKIP_TMAN += tag 33 34# Empty heads are still mishandled by -Tman. 35 36SKIP_TMAN += emptyhead emptytag 37 38.include <bsd.regress.mk> 39