From b547d7ed1c64ebd6ee9d2b08fd23a16c1cc187f0 Mon Sep 17 00:00:00 2001 From: Milind Changire Date: Mon, 17 Mar 2025 00:14:41 +0530 Subject: [PATCH] teuthlogy/task/exec: add ASAN options Signed-off-by: Milind Changire --- teuthology/task/exec.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/teuthology/task/exec.py b/teuthology/task/exec.py index b3548c332d..b1c4e9d0e2 100644 --- a/teuthology/task/exec.py +++ b/teuthology/task/exec.py @@ -66,6 +66,8 @@ def task(ctx, config): remote.run( args=[ 'sudo', + 'ASAN_OPTIONS=detect_leaks=0,detect_odr_violation=0', + 'LD_PRELOAD=/lib64/libasan.so.6', 'TESTDIR={tdir}'.format(tdir=testdir), 'bash', '-c', -- 2.39.5