tests: Add set -e to missing tests

This helps to ensure that error codes do not get ignored.

Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
Glenn Washburn 2021-10-12 19:39:57 -05:00 committed by Daniel Kiper
parent b314807a0e
commit 5e0a8129ef
3 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#! @BUILD_SHEBANG@
set -e
# create a randome file
empty="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1

View File

@ -1,4 +1,5 @@
#! @BUILD_SHEBANG@
set -e
# Run GRUB script in a Qemu instance
# Copyright (C) 2010 Free Software Foundation, Inc.

View File

@ -1,4 +1,5 @@
#! @BUILD_SHEBANG@
set -e
# create a randome file
file="`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"`" || exit 1