Commit c0cf813e authored by Daniel Verkamp's avatar Daniel Verkamp Committed by Jim Harris
Browse files

test/nvme: disable AER in nightly tests



Currently, the nightly tests are hanging due to the AER test program,
which waits for a temperature threshold event to occur.  The QEMU
emulated NVMe controller (as well as the SPDK NVMe-oF target virtual
controller) don't emulate this condition, so the test never finishes.

Change-Id: I41a216f77ffbb3beaef2fdf7533fe62c36033fc6
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/389908


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
parent 89dedde1
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -89,9 +89,10 @@ if [ `uname` = Linux ]; then
fi

if [ $RUN_NIGHTLY -eq 1 ]; then
	timing_enter aer
	$testdir/aer/aer
	timing_exit aer
	# TODO: temporarily disabled - temperature AER doesn't fire on emulated controllers
	#timing_enter aer
	#$testdir/aer/aer
	#timing_exit aer

	timing_enter reset
	$testdir/reset/reset -q 64 -w write -s 4096 -t 2
+3 −1
Original line number Diff line number Diff line
@@ -45,7 +45,9 @@ fi
timing_enter host

if [ $RUN_NIGHTLY -eq 1 ]; then
	run_test test/nvmf/host/aer.sh
	# TODO: temporarily disabled - temperature AER doesn't fire on emulated controllers
	#run_test test/nvmf/host/aer.sh
	true
fi
run_test test/nvmf/host/bdevperf.sh
run_test test/nvmf/host/identify.sh