From a2c3412dd861388b5b9524c99e16a85f6b588378 Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Wed, 6 Nov 2019 10:10:53 -0700 Subject: [PATCH] test: add additional asan suppressions related to fio We are already suppressing fio (not SPDK fio_plugin) leaks in a couple of other places, which could likely be causing the indirect leaks we are now going to suppress here. Fixes issue #1003. Signed-off-by: Jim Harris Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/473495 (master) (cherry picked from commit 2be2b6eba5781c850c24630f68f2e28f676d0781) Change-Id: Ie5283280495e7155cda1a93d2bd3d48ffbb6cba7 Signed-off-by: Tomasz Zawadzki Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/478583 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto --- test/common/autotest_common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/common/autotest_common.sh b/test/common/autotest_common.sh index c28a376cb..dc971e770 100644 --- a/test/common/autotest_common.sh +++ b/test/common/autotest_common.sh @@ -94,6 +94,8 @@ echo "leak:spdk_fs_alloc_thread_ctx" >> "$asan_suppression_file" echo "leak:/usr/src/fio/parse.c" >> "$asan_suppression_file" echo "leak:/usr/src/fio/iolog.c" >> "$asan_suppression_file" echo "leak:/usr/src/fio/init.c" >> "$asan_suppression_file" +echo "leak:fio_memalign" >> "$asan_suppression_file" +echo "leak:spdk_fio_io_u_init" >> "$asan_suppression_file" # Suppress leaks in libiscsi echo "leak:libiscsi.so" >> "$asan_suppression_file"