public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Akira TAGOH <akira@tagoh.org>
To: git-commits@fedoraproject.org
Subject: [tests/fonts] rhel9: Show more information on logs
Date: Thu, 13 Aug 2026 10:29:28 GMT [thread overview]
Message-ID: <178661696853.1.16474396440764651990.tests-fonts-e5836a693c25@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : tests/fonts
Branch : rhel9
Commit : e5836a693c25739c73b90e24edee1c2ca9f861f7
Author : Akira TAGOH <akira@tagoh.org>
Date : 2024-11-18T18:38:37+09:00
Stats : +20/-3 in 3 file(s)
URL : https://src.fedoraproject.org/tests/fonts/c/e5836a693c25739c73b90e24edee1c2ca9f861f7?branch=rhel9
Log:
Show more information on logs
---
diff --git a/tests/default_fonts/test.sh b/tests/default_fonts/test.sh
index 45a43ca..d9db60a 100755
--- a/tests/default_fonts/test.sh
+++ b/tests/default_fonts/test.sh
@@ -76,7 +76,15 @@ rlJournalStart
if [ -n "$VARLIST" ] && [ -f "$TMT_TREE/plans/$VARLIST" ]; then
rlLogInfo "Reading variables from $VARLIST"
- grep -E -v "^#" "$TMT_TREE/plans/$VARLIST" | while IFS=";" read -r _PACKAGE _FONT_ALIAS _FONT_LANG _FONT_WIDTH _FONT_FAMILY _DEFAULT_SANS _DEFAULT_SERIF _DEFAULT_MONO _DEFAULT_EMOJI _DEFAULT_MATH dummy; do
+ grep -E -v "^#" "$TMT_TREE/plans/$VARLIST" | while IFS=";" read -r _PACKAGE _FONT_ALIAS _FONT_LANG _FONT_WIDTH _FONT_FAMILY _DEFAULT_SANS _DEFAULT_SERIF _DEFAULT_MONO _DEFAULT_EMOJI _DEFAULT_MATH FONT_LANG_EXCLUDE_FILES FONT_VALIDATE_EXCLUDE_FILES FONT_CONF_EXCLUDE_FILES FONT_VALIDATE_INDEXES dummy; do
+ rlLogInfo " PACKAGE: $_PACKAGE"
+ rlLogInfo " FONT_FAMILY: $_FONT_FAMILY"
+ rlLogInfo " FONT_LANG: $_FONT_LANG"
+ rlLogInfo " DEFAULT_SANS: $_DEFAULT_SANS"
+ rlLogInfo " DEFAULT_SERIF: $_DEFAULT_SERIF"
+ rlLogInfo " DEFAULT_MONO: $_DEFAULT_MONO"
+ rlLogInfo " DEFAULT_EMOJI: $_DEFAULT_EMOJI"
+ rlLogInfo " DEFAULT_MATH: $_DEFAULT_MATH"
test_default_fonts "$_PACKAGE" "$_FONT_FAMILY" "$_FONT_LANG" "$_DEFAULT_SANS" "$_DEFAULT_SERIF" "$_DEFAULT_MONO" "$_DEFAULT_EMOJI" "$_DEFAULT_MATH"
done
else
diff --git a/tests/generic_alias/test.sh b/tests/generic_alias/test.sh
index 24d5967..abcf0ca 100755
--- a/tests/generic_alias/test.sh
+++ b/tests/generic_alias/test.sh
@@ -96,7 +96,13 @@ rlJournalStart
if [ -n "$VARLIST" ] && [ -f "$TMT_TREE/plans/$VARLIST" ]; then
rlLogInfo "Reading variables from $VARLIST"
- grep -E -v "^#" "$TMT_TREE/plans/$VARLIST" | while IFS=";" read -r _PACKAGE _FONT_ALIAS _FONT_LANG _FONT_WIDTH _FONT_FAMILY SANS SERIF MONO EMOJI MATH FONT_LANG_EXCLUDE_FILES FONT_VALIDATE_EXCLUDE_FILES _FONT_CONF_EXCLUDE_FILES dummy; do
+ grep -E -v "^#" "$TMT_TREE/plans/$VARLIST" | while IFS=";" read -r _PACKAGE _FONT_ALIAS _FONT_LANG _FONT_WIDTH _FONT_FAMILY SANS SERIF MONO EMOJI MATH FONT_LANG_EXCLUDE_FILES FONT_VALIDATE_EXCLUDE_FILES _FONT_CONF_EXCLUDE_FILES _FONT_VALIDATE_INDEXES dummy; do
+ rlLogInfo " PACKAGE: $_PACKAGE"
+ rlLogInfo " FONT_ALIAS: $_FONT_ALIAS"
+ rlLogInfo " FONT_LANG: $_FONT_LANG"
+ rlLogInfo " FONT_WIDTH: $_FONT_WIDTH"
+ rlLogInfo " FONT_FAMILY: $_FONT_FAMILY"
+ rlLogInfo " FONT_CONF_EXCLUDE_FILES: $_FONT_EXCLUDE_FILES"
test_pkg "$_PACKAGE"
test_generic_alias "$_PACKAGE" "$_FONT_ALIAS" "$_FONT_LANG" "$_FONT_WIDTH" "$_FONT_FAMILY" "$_FONT_CONF_EXCLUDE_FILES"
done
diff --git a/tests/lang_coverage/test.sh b/tests/lang_coverage/test.sh
index da82202..3b4944a 100755
--- a/tests/lang_coverage/test.sh
+++ b/tests/lang_coverage/test.sh
@@ -80,7 +80,10 @@ rlJournalStart
if [ -n "$VARLIST" ] && [ -f "$TMT_TREE/plans/$VARLIST" ]; then
rlLogInfo "Reading variables from $VARLIST"
- grep -E -v "^#" "$TMT_TREE/plans/$VARLIST" | while IFS=";" read -r _PACKAGE FONT_ALIAS _FONT_LANG FONT_WIDTH FONT_FAMILY SANS SERIF MONO EMOJI MATH _FONT_LANG_EXCLUDE_FILES dummy; do
+ grep -E -v "^#" "$TMT_TREE/plans/$VARLIST" | while IFS=";" read -r _PACKAGE FONT_ALIAS _FONT_LANG FONT_WIDTH FONT_FAMILY SANS SERIF MONO EMOJI MATH _FONT_LANG_EXCLUDE_FILES _FONT_VALIDATE_EXCLUDE_FILES _FONT_CONF_EXCLUDE_FILES _FONT_VALIDATE_INDEXES dummy; do
+ rlLogInfo " PACKAGE: $_PACKAGE"
+ rlLogInfo " FONT_LANG: $_FONT_LANG"
+ rlLogInfo " FONT_LANG_EXCLUDE_FILES: $_FONT_LANG_EXCLUDE_FILES"
test_lang_coverage "$_PACKAGE" "$_FONT_LANG" "$_FONT_LANG_EXCLUDE_FILES"
done
else
reply other threads:[~2026-08-13 10:29 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178661696853.1.16474396440764651990.tests-fonts-e5836a693c25@fedoraproject.org \
--to=akira@tagoh.org \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox