summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2017-06-29 10:14:59 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2017-06-29 22:23:17 +0200
commit00957450ebc08f82382eccef78ce405eeb4461fa (patch)
treeecabc89f994b1738416ec510433cd0681bc25630
parentc396053955c6481cfc753f498af9a61202ce2d91 (diff)
downloadlvm2-00957450ebc08f82382eccef78ce405eeb4461fa.tar.gz
tests: utils.sh no mixed string array
Argument mixes string and array. Use * or separate argument.
-rw-r--r--test/lib/utils.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/utils.sh b/test/lib/utils.sh
index c15eef32f..fa072ba18 100644
--- a/test/lib/utils.sh
+++ b/test/lib/utils.sh
@@ -223,7 +223,7 @@ skip() {
if test "$#" -eq 0; then
stacktrace
else
- echo "TEST SKIPPED: $@"
+ echo "TEST SKIPPED:" "$@"
fi
touch SKIP_THIS_TEST
exit 200