summaryrefslogtreecommitdiffstats
path: root/external/boot-tests
diff options
context:
space:
mode:
Diffstat (limited to 'external/boot-tests')
-rwxr-xr-xexternal/boot-tests/boot_test.sh20
1 files changed, 15 insertions, 5 deletions
diff --git a/external/boot-tests/boot_test.sh b/external/boot-tests/boot_test.sh
index b7f14e48..303f78eb 100755
--- a/external/boot-tests/boot_test.sh
+++ b/external/boot-tests/boot_test.sh
@@ -5,6 +5,7 @@
set -uo pipefail
V=0;
+target=""
if [ -f ~/.skiboot_boot_tests ]; then
source ~/.skiboot_boot_tests
@@ -12,14 +13,23 @@ fi
# Utility functions
function error {
- unset SSHPASS;
- echo "$target: $1" >&2;
- exit 1;
+ unset SSHPASS
+ if [ ! -z "$target" ]; then
+ echo "$target: $*" >&2
+ else
+ echo "$0: $*" >&2
+ fi
+
+ exit 1
}
function msg {
- if [ $V -ne 0 ] ; then
- echo "$target: $@";
+ if [ $V -ne 0 ]; then
+ if [ ! -z "$target" ]; then
+ echo "$target: $*"
+ else
+ echo "$0: $*"
+ fi
fi
}
OpenPOWER on IntegriCloud