]> sourceware.org Git - lvm2.git/commitdiff
tests: inittest.sh double quote and mixing string
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 29 Jun 2017 08:38:06 +0000 (10:38 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 29 Jun 2017 20:23:17 +0000 (22:23 +0200)
test/lib/inittest.sh

index b75eddc58291250c762dad7627237463bee60a09..f959b717404e609ff3f72f9eb03166fffb506a69 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/env bash
-# Copyright (C) 2011-2015 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2011-2017 Red Hat, Inc. All rights reserved.
 #
 # This copyrighted material is made available to anyone wishing to use,
 # modify, copy, or redistribute it subject to the terms and conditions
@@ -10,7 +10,7 @@
 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
 initskip() {
-       test "$#" -eq 0 || echo "TEST SKIPPED: $@"
+       test "$#" -eq 0 || echo "TEST SKIPPED: " "$@"
        exit 200
 }
 
@@ -26,7 +26,7 @@ PS4='#${BASH_SOURCE[0]##*/}:${LINENO}+ '
 export TESTNAME PS4
 
 if test -n "$LVM_TEST_FLAVOUR"; then
-       . lib/flavour-$LVM_TEST_FLAVOUR
+       . "lib/flavour-$LVM_TEST_FLAVOUR"
 fi
 
 test -n "$SKIP_WITHOUT_CLVMD" && test "$LVM_TEST_LOCKING" -ne 3 && initskip
This page took 0.071476 seconds and 5 git commands to generate.