aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2019-01-04 04:04:14 +0000
committerIngo Schwarze <schwarze@openbsd.org>2019-01-04 04:04:14 +0000
commit974a808d4eb167475c20c49e55a273647ce3e23a (patch)
tree1895d7a4be1d273bc03b04652ba7fa8beb5aab68
parent995226b9b9a3d51201a7560c81799147b9a4eed9 (diff)
downloadmandoc-974a808d4eb167475c20c49e55a273647ce3e23a.tar.gz
mandoc-974a808d4eb167475c20c49e55a273647ce3e23a.tar.zst
mandoc-974a808d4eb167475c20c49e55a273647ce3e23a.zip
Test interaction of low-level roff(7) filling requests with .Bd in general
and filling in .Bd -centered in particular; related to mdoc_term.c rev. 1.372.
-rw-r--r--regress/mdoc/Bd/Makefile4
-rw-r--r--regress/mdoc/Bd/centered.in8
-rw-r--r--regress/mdoc/Bd/centered.out_ascii6
-rw-r--r--regress/mdoc/Bd/centered.out_markdown5
-rw-r--r--regress/mdoc/Bd/nf.in34
-rw-r--r--regress/mdoc/Bd/nf.out_ascii22
-rw-r--r--regress/mdoc/Bd/nf.out_markdown32
7 files changed, 98 insertions, 13 deletions
diff --git a/regress/mdoc/Bd/Makefile b/regress/mdoc/Bd/Makefile
index 817d9fe7..0d0b2fb9 100644
--- a/regress/mdoc/Bd/Makefile
+++ b/regress/mdoc/Bd/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.18 2014/12/24 23:31:59 schwarze Exp $
+# $OpenBSD: Makefile,v 1.21 2019/01/04 03:54:50 schwarze Exp $
-REGRESS_TARGETS = beforeNAME blank centered nested spacing
+REGRESS_TARGETS = beforeNAME blank centered nested nf spacing
REGRESS_TARGETS += badargs empty offset-empty offset-neg
REGRESS_TARGETS += break broken unclosed
diff --git a/regress/mdoc/Bd/centered.in b/regress/mdoc/Bd/centered.in
index 8b0d438f..ed2e32a8 100644
--- a/regress/mdoc/Bd/centered.in
+++ b/regress/mdoc/Bd/centered.in
@@ -1,5 +1,5 @@
-.\" $OpenBSD: centered.in,v 1.2 2017/07/04 14:53:24 schwarze Exp $
-.Dd $Mdocdate: July 4 2017 $
+.\" $OpenBSD: centered.in,v 1.3 2019/01/04 03:54:50 schwarze Exp $
+.Dd $Mdocdate: January 4 2019 $
.Dt BD-CENTERED 1
.Os
.Sh NAME
@@ -9,8 +9,6 @@
preceding text
.br
.Bd -centered -offset indent
-first line of the block
-.br
-second line
+The text in this centered block is wide enough to not fit on one line.
.Ed
following text
diff --git a/regress/mdoc/Bd/centered.out_ascii b/regress/mdoc/Bd/centered.out_ascii
index 9a183b3a..79bdc045 100644
--- a/regress/mdoc/Bd/centered.out_ascii
+++ b/regress/mdoc/Bd/centered.out_ascii
@@ -6,8 +6,8 @@ NNAAMMEE
DDEESSCCRRIIPPTTIIOONN
preceding text
- first line of the block
- second line
+ The text in this centered block is wide enough to not fit on one
+ line.
following text
-OpenBSD July 4, 2017 OpenBSD
+OpenBSD January 4, 2019 OpenBSD
diff --git a/regress/mdoc/Bd/centered.out_markdown b/regress/mdoc/Bd/centered.out_markdown
index 5eb0b5cc..1cab58c3 100644
--- a/regress/mdoc/Bd/centered.out_markdown
+++ b/regress/mdoc/Bd/centered.out_markdown
@@ -8,9 +8,8 @@ BD-CENTERED(1) - General Commands Manual
preceding text
-> first line of the block
-> second line
+> The text in this centered block is wide enough to not fit on one line.
following text
-OpenBSD - July 4, 2017
+OpenBSD - January 4, 2019
diff --git a/regress/mdoc/Bd/nf.in b/regress/mdoc/Bd/nf.in
new file mode 100644
index 00000000..884825e2
--- /dev/null
+++ b/regress/mdoc/Bd/nf.in
@@ -0,0 +1,34 @@
+.\" $OpenBSD: nf.in,v 1.1 2019/01/04 03:54:50 schwarze Exp $
+.Dd $Mdocdate: January 4 2019 $
+.Dt BD-NF 1
+.Os
+.Sh NAME
+.Nm Bd-nf
+.Nd interaction of no-fill blocks and requests
+.Sh DESCRIPTION
+initial
+text
+.nf
+after .nf
+request
+.fi
+after .fi
+request
+.Bd -unfilled
+in unfilled
+block
+.fi
+after .fi request
+in unfilled block
+.Ed
+after end
+of unfilled block
+.Bd -filled
+in filled
+block
+.nf
+after .nf request
+in filled block
+.Ed
+after end
+of filled block
diff --git a/regress/mdoc/Bd/nf.out_ascii b/regress/mdoc/Bd/nf.out_ascii
new file mode 100644
index 00000000..4a42fe82
--- /dev/null
+++ b/regress/mdoc/Bd/nf.out_ascii
@@ -0,0 +1,22 @@
+BD-NF(1) General Commands Manual BD-NF(1)
+
+NNAAMMEE
+ BBdd--nnff - interaction of no-fill blocks and requests
+
+DDEESSCCRRIIPPTTIIOONN
+ initial text
+ after .nf
+ request
+ after .fi request
+
+ in unfilled
+ block
+ after .fi request in unfilled block
+ after end of unfilled block
+
+ in filled block
+ after .nf request
+ in filled block
+ after end of filled block
+
+OpenBSD January 4, 2019 OpenBSD
diff --git a/regress/mdoc/Bd/nf.out_markdown b/regress/mdoc/Bd/nf.out_markdown
new file mode 100644
index 00000000..382bb786
--- /dev/null
+++ b/regress/mdoc/Bd/nf.out_markdown
@@ -0,0 +1,32 @@
+BD-NF(1) - General Commands Manual
+
+# NAME
+
+**Bd-nf** - interaction of no-fill blocks and requests
+
+# DESCRIPTION
+
+initial
+text
+after .nf
+request
+after .fi
+request
+
+ in unfilled
+ block
+ after .fi request
+ in unfilled block
+
+after end
+of unfilled block
+
+> in filled
+> block
+> after .nf request
+> in filled block
+
+after end
+of filled block
+
+OpenBSD - January 4, 2019