All of lore.kernel.org
 help / color / mirror / Atom feed
From: Glenn Washburn <development@efficientek.com>
To: grub-devel@gnu.org, Daniel Kiper <daniel.kiper@oracle.com>
Cc: Glenn Washburn <development@efficientek.com>
Subject: [PATCH 03/12] grub-shell: Only show grub-mkrescue output if it returns an error
Date: Wed, 31 Mar 2021 20:57:42 -0500	[thread overview]
Message-ID: <e2826567ca78fbe6aa209eb552eb5d9cbb341d95.1617240986.git.development@efficientek.com> (raw)
In-Reply-To: <cover.1617240986.git.development@efficientek.com>

The previous behavior ignored an error and the output from grub-mkrescue.
This made it a pain to discover that grub-mkrescue was the reason that tests
which rely on grub-shell were failing.  Even after discovering grub-mkrescue
was the culprit, there was no output to indicate why it was failing.  It
turns out that grub-mkrescue is a thin wrapper around xorriso. So if you do
not have xorriso installed it will fail with an error message about not
being able to find xorriso.

This change will allow grub-mkrescue output to be written to stderr, only if
grub-mkrescue fails.  If grub-mkrescue succeeds, there will be no output
from grub-mkrescue so as not to interfere with the functioning of tests.
This change should have no effect on the running of tests or other uses of
grub-shell as it only modifies the error path.

Also, if grub-mkrescue fails, the script exits early.  Since grub-shell
needs the iso image created by grub-mkresue to boot the qemu instance, a
failure here should be considered fatal.

Signed-off-by: Glenn Washburn <development@efficientek.com>
---
 tests/util/grub-shell.in | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/tests/util/grub-shell.in b/tests/util/grub-shell.in
index 602b16f3e..9d8c417da 100644
--- a/tests/util/grub-shell.in
+++ b/tests/util/grub-shell.in
@@ -60,6 +60,17 @@ Report bugs to <bug-grub@gnu.org>.
 EOF
 }
 
+# Exec given argv and only show its output on STDERR if it returns an
+# error status.
+exec_show_error () {
+    v=`$@ 2>&1`
+    ret=$?
+    if [ "$ret" != 0 ]; then
+        echo "$v" >&2
+        exit $ret
+    fi
+}
+
 . "${builddir}/grub-core/modinfo.sh"
 qemuopts="${GRUB_QEMU_OPTS}"
 serial_port=com0
@@ -383,13 +394,15 @@ if test -z "$debug"; then
 fi
 
 if [ x$boot != xnet ] && [ x$boot != xemu ]; then
-    pkgdatadir="@builddir@" "@builddir@/grub-mkrescue" "--output=${isofile}" "--override-directory=${builddir}/grub-core" \
+    pkgdatadir="@builddir@" \
+    exec_show_error "@builddir@/grub-mkrescue" "--output=${isofile}" \
+	"--override-directory=${builddir}/grub-core" \
 	--rom-directory="${rom_directory}" \
 	--locale-directory="@srcdir@/po" \
 	--themes-directory="@srcdir@/themes" \
 	$mkimage_extra_arg ${mkrescue_args} \
 	"/boot/grub/grub.cfg=${cfgfile}" "/boot/grub/testcase.cfg=${source}" \
-	${files} >/dev/null 2>&1
+	${files} || exit $?
 fi
 if [ x$boot = xhd ]; then
     if [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = arm64-efi ] || [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = arm-efi ]; then
-- 
2.27.0



  parent reply	other threads:[~2021-04-01  1:58 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-01  1:57 [PATCH 00/12] Grub-shell improvements Glenn Washburn
2021-04-01  1:57 ` [PATCH 01/12] grub-shell: Allow specifying non-default trim line contents Glenn Washburn
2021-04-01  1:57 ` [PATCH 02/12] grub-shell: Trim line should always be matched from the beginning of the line Glenn Washburn
2021-04-01  1:57 ` Glenn Washburn [this message]
2021-04-01  1:57 ` [PATCH 04/12] grub-shell: Allow setting default timeout via GRUB_SHELL_DEFAULT_TIMEOUT envvar Glenn Washburn
2021-04-01  1:57 ` [PATCH 05/12] grub-shell: Put all generated files into working dir and use better file names Glenn Washburn
2021-04-01  1:57 ` [PATCH 06/12] grub-shell: Add grub output logfile with grub-shell --debug Glenn Washburn
2021-04-01  1:57 ` [PATCH 07/12] grub-shell: Set exit status to qemu exit status Glenn Washburn
2021-04-01  1:57 ` [PATCH 08/12] tests: Allow turning on shell tracing from environment variables Glenn Washburn
2021-04-01  1:57 ` [PATCH 09/12] grub-shell: Add --verbose to mkrescue when $debug is greater than 2 Glenn Washburn
2021-04-01  1:57 ` [PATCH 10/12] grub-shell: Only turn on qemu head when large debug value is specified Glenn Washburn
2021-04-01  1:57 ` [PATCH 11/12] grub-shell: Use malta qemu-mips machine type instead off non-existant indy Glenn Washburn
2021-04-01  1:57 ` [PATCH 12/12] grub-shell: Update qemu UEFI firmware names to be more generic Glenn Washburn
2021-08-25 23:06 ` [PATCH 00/12] Grub-shell improvements Glenn Washburn
2021-08-26 18:00   ` Daniel Kiper
2021-08-26 22:08     ` Glenn Washburn
2021-08-30 15:23       ` Daniel Kiper
2021-08-30 16:33         ` Denis 'GNUtoo' Carikli
2021-08-30 17:50           ` Patrick Steinhardt
2021-09-14 11:04         ` IS: Glenn's patches status WAS: " Daniel Kiper
2021-09-14 17:27           ` Glenn Washburn
2021-09-15 16:15             ` Daniel Kiper
2021-09-15 16:18               ` Daniel Kiper

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=e2826567ca78fbe6aa209eb552eb5d9cbb341d95.1617240986.git.development@efficientek.com \
    --to=development@efficientek.com \
    --cc=daniel.kiper@oracle.com \
    --cc=grub-devel@gnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.