From d318611dd6f23fcfedd50e9b9e24620b102ba96a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 21:44:05 +0200 Subject: Adding upstream version 1.23.0. Signed-off-by: Daniel Baumann --- .../an_font-remapping-does-not-affect-titles.sh | 60 ++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100755 tmac/tests/an_font-remapping-does-not-affect-titles.sh (limited to 'tmac/tests/an_font-remapping-does-not-affect-titles.sh') diff --git a/tmac/tests/an_font-remapping-does-not-affect-titles.sh b/tmac/tests/an_font-remapping-does-not-affect-titles.sh new file mode 100755 index 0000000..3332cc1 --- /dev/null +++ b/tmac/tests/an_font-remapping-does-not-affect-titles.sh @@ -0,0 +1,60 @@ +#!/bin/sh +# +# Copyright (C) 2021 Free Software Foundation, Inc. +# +# This file is part of groff. +# +# groff is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# groff is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + +groff="${abs_top_builddir:-.}/test-groff" + +# Regression-test Savannah #61279. +# +# If a SH or SS (sub)section heading was about to be output at the +# bottom of a page but wasn't because of the vertical space .ne-eded, +# we want to ensure that font remapping for the headings doesn't affect +# page footers and headers. + +# Keep preconv from being run. +unset GROFF_ENCODING + +input='.TH \\fIfoo\\fP 1 2021-10-04 "groff test suite" +.SH Name +foo \\- a command with a very short name +.sp 50v +.SH "\\fIgroff\\fP integration" +A complicated situation.' + +output=$(echo "$input" | "$groff" -Tascii -man -rcR=0) +echo "$output" +output=$(echo "$input" | "$groff" -Tascii -man -rcR=0 -Z | nl) +echo "$output" + +# Expected: +# 74 V2640 +# 75 p2 +# 76 x font 2 I +# 77 f2 +# 78 s10 +# 79 V160 +# 80 H0 +# 81 tfoo +# 82 x font 1 R +# 83 f1 +# 84 t(1) + +echo "$output" | grep -E '77[[:space:]]+f2' + +# vim:set ai et sw=4 ts=4 tw=72: -- cgit v1.2.3