gbranden pushed a commit to branch master
in repository groff.

commit 506fdfcdc78fd3ed76ab8edcd31e8cbd972ef5d4
Author: G. Branden Robinson <g.branden.robin...@gmail.com>
AuthorDate: Thu Jul 25 09:06:41 2024 -0500

    [groff]: Adapt test to forthcoming change.
    
    We're about to start enforcing a minimum page length (as opposed to
    accepting negative ones); these tests can leave the vertical drawing
    position in (tracked by the `nl` register) in a weird place, so ensure
    that we don't request a page length of less than 1v when truncating
    nroff output for tidiness.
---
 .../groff/tests/some_escapes_accept_newline_delimiters.sh  | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/roff/groff/tests/some_escapes_accept_newline_delimiters.sh 
b/src/roff/groff/tests/some_escapes_accept_newline_delimiters.sh
index 96be05532..595e486d9 100755
--- a/src/roff/groff/tests/some_escapes_accept_newline_delimiters.sh
+++ b/src/roff/groff/tests/some_escapes_accept_newline_delimiters.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2022 Free Software Foundation, Inc.
+# Copyright (C) 2022-2024 Free Software Foundation, Inc.
 #
 # This file is part of groff.
 #
@@ -35,7 +35,7 @@ wail () {
 input="\A
 ABC
 D
-.pl \n(nlu"
+.pl 1v>?\n(nlu"
 
 echo "checking that newline is accepted as delimiter to 'A' escape" >&2
 error=$(printf "%s\n" "$input" | "$groff" -Tascii -ww -z 2>&1)
@@ -49,7 +49,7 @@ input=".sp
 \b
 ABC
 D
-.pl \n(nlu"
+.pl 1v>?\n(nlu"
 
 echo "checking that newline is accepted as delimiter to 'b' escape" >&2
 error=$(printf "%s\n" "$input" | "$groff" -Tascii -ww -z 2>&1)
@@ -62,7 +62,7 @@ echo "$output" | grep -Fqx "B D" || wail
 input="\o
 ABC
 D
-.pl \n(nlu"
+.pl 1v>?\n(nlu"
 
 echo "checking that newline is accepted as delimiter to 'o' escape" >&2
 error=$(printf "%s\n" "$input" | "$groff" -Tascii -ww -z 2>&1)
@@ -78,7 +78,7 @@ printf "%s\n" "$output" \
 input="\w
 ABC
 D
-.pl \n(nlu"
+.pl 1v>?\n(nlu"
 
 echo "checking that newline is accepted as delimiter to 'w' escape" >&2
 error=$(printf "%s\n" "$input" | "$groff" -Tascii -ww -z 2>&1)
@@ -91,7 +91,7 @@ test "$output" = "72 D" || wail
 input="\X
 tty: link http://example.com
 D
-.pl \n(nlu"
+.pl 1v>?\n(nlu"
 
 echo "checking that newline is accepted as delimiter to 'X' escape" >&2
 error=$(printf "%s\n" "$input" | "$groff" -Tascii -ww -z 2>&1)
@@ -104,7 +104,7 @@ test "$output" = ' D' || wail
 input="\Z
 ABC
 D
-.pl \n(nlu"
+.pl 1v>?\n(nlu"
 
 echo "checking that newline is accepted as delimiter to 'Z' escape" >&2
 error=$(printf "%s\n" "$input" | "$groff" -Tascii -ww -z 2>&1)

_______________________________________________
Groff-commit mailing list
Groff-commit@gnu.org
https://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to