Commit 5f7eb6e3 authored by Jim Harris's avatar Jim Harris Committed by Ben Walker
Browse files

test: remove references to stub application



We are doing away with using the stub application as
much as possible, so let's just remove references to it
where we can.

Signed-off-by: default avatarJim Harris <james.r.harris@intel.com>
Change-Id: I52802474f1aaaf100c1b929f4e3ac555532a8410

Reviewed-on: https://review.gerrithub.io/c/444305


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarShuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: default avatarDarek Stojaczyk <dariusz.stojaczyk@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
parent 05130f2d
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -14,8 +14,6 @@ rpc_py="$rootdir/scripts/rpc.py"

timing_enter start_iscsi_tgt

# Start the iSCSI target without using stub
# Reason: Two SPDK processes will be started
$ISCSI_APP -m 0x2 -p 1 -s 512 --wait-for-rpc &
pid=$!
echo "iSCSI target launched. pid: $pid"
+0 −2
Original line number Diff line number Diff line
@@ -14,8 +14,6 @@ rpc_py="$rootdir/scripts/rpc.py"

timing_enter start_iscsi_tgt

# Start the iSCSI target without using stub
# Reason: Two SPDK processes will be started
$ISCSI_APP -m 0x2 -p 1 -s 512 --wait-for-rpc &
pid=$!
echo "iSCSI target launched. pid: $pid"
+0 −2
Original line number Diff line number Diff line
@@ -49,8 +49,6 @@ fi
trap "cleanup_veth_interfaces $TEST_TYPE; exit 1" SIGINT SIGTERM EXIT

if [ $SPDK_TEST_NVMF -eq 1 ]; then
	# TODO: enable remote NVMe controllers with multi-process so that
	#  we can use the stub for this test
	# Test configure remote NVMe device from rpc and conf file
	run_test suite ./test/iscsi_tgt/nvme_remote/fio_remote_nvme.sh
fi
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ set -e
timing_enter multiconnection

timing_enter start_iscsi_tgt
# Start the iSCSI target without using stub.
$ISCSI_APP --wait-for-rpc &
iscsipid=$!
echo "iSCSI target launched. pid: $iscsipid"
+0 −1
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ NETMASK=$INITIATOR_IP/32
function run_nvme_remote() {
	echo "now use $1 method to run iscsi tgt."

	# Start the iSCSI target without using stub
	iscsi_rpc_addr="/var/tmp/spdk-iscsi.sock"
	ISCSI_APP="$rootdir/app/iscsi_tgt/iscsi_tgt"
	$ISCSI_APP -r "$iscsi_rpc_addr" -m 0x1 -p 0 -s 512 --wait-for-rpc &
Loading