From 1050ace333018f9d8219bf0c2473c5fe3426edc4 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Fri, 20 Apr 2018 09:32:03 -0700 Subject: [PATCH] test/bdev: disable blockdev tests when ASAN is on This test doesn't pass on the current automated test pool now that ASAN is enabled on some test machines. The fixes needed to make this work are too large to backport to a maintenance branch, so for now, just disable this test. Users are encouraged to move to master or the upcoming v18.04 release in order to get all of the blockdev unregister bug fixes. Change-Id: Iabfc7d59dba12654f7411b99b90cb78cdbb62fcd Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/408507 Tested-by: SPDK Automated Test System Reviewed-by: Ben Walker --- autotest.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autotest.sh b/autotest.sh index 39af45ab8..b7457c68b 100755 --- a/autotest.sh +++ b/autotest.sh @@ -92,7 +92,10 @@ fi timing_enter lib if [ $SPDK_TEST_BLOCKDEV -eq 1 ]; then - run_test test/lib/bdev/blockdev.sh + # NOTE: disabled on SPDK v18.01.x branch when ASAN is enabled + if [ $SPDK_RUN_ASAN -eq 0 ]; then + run_test test/lib/bdev/blockdev.sh + fi fi if [ $SPDK_TEST_EVENT -eq 1 ]; then