Commit 2240a8b2 authored by Pawel Niedzwiecki's avatar Pawel Niedzwiecki Committed by Darek Stojaczyk
Browse files

test/nightly: Add tests to RUN_NIGHTLY_FAILING.



Test case in blockdev.sh is causing nightly tests to fail
so put it back to nightly_failing list.
Put vhost read-only test on the list to check if it passes
on qemu 3.0.0. Bring back vhost live migration test since it
is missing vhost.sh.

Change-Id: Ic8b5341808cdf843850d22fb6a22a64e92dccafa
Signed-off-by: default avatarPawel Niedzwiecki <pawelx.niedzwiecki@intel.com>
Reviewed-on: https://review.gerrithub.io/c/436840


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-by: default avatarKarol Latecki <karol.latecki@intel.com>
Reviewed-by: default avatarDarek Stojaczyk <dariusz.stojaczyk@intel.com>
parent 470a1330
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ function run_fio()
{
	if [ $RUN_NIGHTLY -eq 0 ]; then
		LD_PRELOAD=$plugindir/fio_plugin /usr/src/fio/fio --ioengine=spdk_bdev --iodepth=8 --bs=4k --runtime=10 $testdir/bdev.fio "$@"
	else
	elif [ $RUN_NIGHTLY_FAILING -eq 1 ]; then
		# Use size 192KB which both exceeds typical 128KB max NVMe I/O
		#  size and will cross 128KB Intel DC P3700 stripe boundaries.
		LD_PRELOAD=$plugindir/fio_plugin /usr/src/fio/fio --ioengine=spdk_bdev --iodepth=128 --bs=192k --runtime=100 $testdir/bdev.fio "$@"
+9 −3
Original line number Diff line number Diff line
@@ -36,10 +36,16 @@ if [ $RUN_NIGHTLY -eq 1 ]; then
	timing_enter integrity_lvol_blk_nightly
	run_test suite ./test/vhost/spdk_vhost.sh --integrity-lvol-blk-nightly
	timing_exit integrity_lvol_blk_nightly
fi

if [ $RUN_NIGHTLY_FAILING -eq 1 ]; then
	timing_enter vhost_migration
	run_test suite ./test/vhost/spdk_vhost.sh --migration
	timing_exit vhost_migration

	# timing_enter readonly
	# run_test suite ./test/vhost/spdk_vhost.sh --readonly
	# timing_exit readonly
	timing_enter readonly
	run_test suite ./test/vhost/spdk_vhost.sh --readonly
	timing_exit readonly
fi

timing_enter integrity_lvol_scsi