From c7553efb0299c28d8b66de3a7ecffe72fc5dcbf3 Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Wed, 14 Aug 2019 08:32:03 +0200 Subject: [PATCH] test/nvmf: use single quotes in trap instruction Previous commit which fixed this styling issue was not rebased before merging, so this single place was missed. Change-Id: I67c5024322c97afd031b3a28ab3dfd686cd96cee Signed-off-by: Karol Latecki Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/465125 Reviewed-by: Changpeng Liu Reviewed-by: Tomasz Zawadzki Tested-by: SPDK CI Jenkins --- test/nvmf/target/initiator_timeout.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/nvmf/target/initiator_timeout.sh b/test/nvmf/target/initiator_timeout.sh index 94bf1c449..84b18653c 100755 --- a/test/nvmf/target/initiator_timeout.sh +++ b/test/nvmf/target/initiator_timeout.sh @@ -14,7 +14,7 @@ timing_enter initiator_timeout nvmftestinit nvmfappstart "-m 0xF" -trap "process_shm --id $NVMF_APP_SHM_ID; killprocess $nvmfpid; nvmftestfini $1; exit 1" SIGINT SIGTERM EXIT +trap 'process_shm --id $NVMF_APP_SHM_ID; killprocess $nvmfpid; nvmftestfini $1; exit 1' SIGINT SIGTERM EXIT $rpc_py construct_malloc_bdev $MALLOC_BDEV_SIZE $MALLOC_BLOCK_SIZE -b Malloc0