groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[groff] 02/09: [tests]: Send progress to standard error stream.


From: G. Branden Robinson
Subject: [groff] 02/09: [tests]: Send progress to standard error stream.
Date: Sat, 18 Feb 2023 02:04:46 -0500 (EST)

gbranden pushed a commit to branch master
in repository groff.

commit 1f02825b60124fd9f048f6857902dff154da5300
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
AuthorDate: Thu Feb 16 11:44:49 2023 -0600

    [tests]: Send progress to standard error stream.
    
    * src/roff/groff/tests/device_control_escapes_express_basic_latin.sh:
      Send progress updates to standard error stream.
---
 src/roff/groff/tests/device_control_escapes_express_basic_latin.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/roff/groff/tests/device_control_escapes_express_basic_latin.sh 
b/src/roff/groff/tests/device_control_escapes_express_basic_latin.sh
index 99d1cee44..0bc308e5e 100755
--- a/src/roff/groff/tests/device_control_escapes_express_basic_latin.sh
+++ b/src/roff/groff/tests/device_control_escapes_express_basic_latin.sh
@@ -34,14 +34,14 @@ check_char () {
   description=$3
   device=$4
   printf 'checking conversion of \%s to %s (%s) on device %s' \
-    "$sc" "$output" "$description" "$device"
+    "$sc" "$output" "$description" "$device" >&2
   if ! printf "\\X#\\%s %s#\n" "$sc" "$desc" | "$groff" -T$device -Z \
     | grep -Fqx 'x X '$output' '
   then
-    printf '...failed'
+    printf '...failed' >&2
     fail=yes
   fi
-  printf '\n'
+  printf '\n' >&2
 }
 
 for device in utf8 html



reply via email to

[Prev in Thread] Current Thread [Next in Thread]