Commit 02a794ef authored by Ben Walker's avatar Ben Walker Committed by Changpeng Liu
Browse files

test: Properly quote function arguments



Change-Id: I163f08a52764069bcfcaee4accccd8e1f75c8b9f
Signed-off-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-on: https://review.gerrithub.io/423763


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarSeth Howell <seth.howell5141@gmail.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarChangpeng Liu <changpeng.liu@intel.com>
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
parent 059935c4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ function nvmfcleanup()

function nvmftestinit()
{
	if [ $1 == "iso" ]; then
	if [ "$1" == "iso" ]; then
		$rootdir/scripts/setup.sh
		rdma_device_init
	fi
@@ -146,7 +146,7 @@ function nvmftestinit()

function nvmftestfini()
{
	if [ $1 == "iso" ]; then
	if [ "$1" == "iso" ]; then
		$rootdir/scripts/setup.sh reset
		rdma_device_init
	fi