From 2d37b82e6b1041bceac3de25dcf3fb8c8c6bb6bc Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Mon, 29 Aug 2022 15:39:11 +0000 Subject: [PATCH] test: disable aen tests until root cause We've had a few more issues with the AEN tests since they were recently enabled (#2660, #2662, #2664, #2674). It looks like #2674 is the only one still open, but it's causing a lot of failures in the test pool so let's disable the tests again while it gets root caused. Signed-off-by: Jim Harris Change-Id: Ib57240e176a05f9b99856ceb6d0bf8afcb24ff95 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14245 Reviewed-by: Michal Berger Reviewed-by: Ben Walker --- test/nvme/nvme.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/nvme/nvme.sh b/test/nvme/nvme.sh index eda3a9025..a003dcc53 100755 --- a/test/nvme/nvme.sh +++ b/test/nvme/nvme.sh @@ -133,10 +133,11 @@ run_test "nvme_reserve" $testdir/reserve/reserve run_test "nvme_err_injection" $testdir/err_injection/err_injection run_test "nvme_overhead" $testdir/overhead/overhead -s 4096 -t 1 -H -i 0 run_test "nvme_arbitration" $SPDK_EXAMPLE_DIR/arbitration -t 3 -i 0 -run_test "nvme_single_aen" $testdir/aer/aer -T -i 0 -L log +# Disabling AEN tests for now due to issue #2674 +#run_test "nvme_single_aen" $testdir/aer/aer -T -i 0 -L log if [ $(uname) != "FreeBSD" ]; then - run_test "nvme_multi_aen" $testdir/aer/aer -m -T -i 0 -L log + #run_test "nvme_multi_aen" $testdir/aer/aer -m -T -i 0 -L log run_test "nvme_startup" $testdir/startup/startup -t 1000000 run_test "nvme_multi_secondary" nvme_multi_secondary trap - SIGINT SIGTERM EXIT