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: Daniel Verkamp <daniel.verkamp@intel.com> Reviewed-on: https://review.gerrithub.io/389908 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
parent
89dedde148
commit
c0cf813e11
@ -89,9 +89,10 @@ if [ `uname` = Linux ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $RUN_NIGHTLY -eq 1 ]; then
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
||||||
timing_enter aer
|
# TODO: temporarily disabled - temperature AER doesn't fire on emulated controllers
|
||||||
$testdir/aer/aer
|
#timing_enter aer
|
||||||
timing_exit aer
|
#$testdir/aer/aer
|
||||||
|
#timing_exit aer
|
||||||
|
|
||||||
timing_enter reset
|
timing_enter reset
|
||||||
$testdir/reset/reset -q 64 -w write -s 4096 -t 2
|
$testdir/reset/reset -q 64 -w write -s 4096 -t 2
|
||||||
|
@ -45,7 +45,9 @@ fi
|
|||||||
timing_enter host
|
timing_enter host
|
||||||
|
|
||||||
if [ $RUN_NIGHTLY -eq 1 ]; then
|
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
|
fi
|
||||||
run_test test/nvmf/host/bdevperf.sh
|
run_test test/nvmf/host/bdevperf.sh
|
||||||
run_test test/nvmf/host/identify.sh
|
run_test test/nvmf/host/identify.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user