Fix: tests: quote variable in case it's not set
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Mon, 19 Apr 2021 18:58:31 +0000 (14:58 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Tue, 11 May 2021 15:22:06 +0000 (11:22 -0400)
Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I34d39498a271e3a1644f49ac7f86f3e7f6d37a0f

tests/utils/utils.sh

index 0152ed4d6713834cc0451f4991d813778a0db218..3ad9abe33db4ade3f20f03ebe3fffd68d2f9cac5 100644 (file)
@@ -1978,7 +1978,7 @@ function rotate_session_fail ()
 
 function destructive_tests_enabled ()
 {
-       if [ ${LTTNG_ENABLE_DESTRUCTIVE_TESTS} = "will-break-my-system" ]; then
+       if [ "$LTTNG_ENABLE_DESTRUCTIVE_TESTS" = "will-break-my-system" ]; then
                return 0
        else
                return 1
This page took 0.029283 seconds and 5 git commands to generate.