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