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 <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/408507
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Daniel Verkamp 2018-04-20 09:32:03 -07:00
parent 34ccb2d7d9
commit 1050ace333

View File

@ -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