From c9fc403bdb6870fc96d312b4c12642b81f610ae8 Mon Sep 17 00:00:00 2001 From: Daniel Salzman Date: Mon, 27 Apr 2026 08:38:05 +0200 Subject: [PATCH] tests-extra: add check for Redis without ASAN --- tests-extra/tools/dnstest/redis.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests-extra/tools/dnstest/redis.py b/tests-extra/tools/dnstest/redis.py index 941d94ed50..2184044027 100644 --- a/tests-extra/tools/dnstest/redis.py +++ b/tests-extra/tools/dnstest/redis.py @@ -105,6 +105,10 @@ class Redis(object): self.proc = subprocess.Popen(prog) time.sleep(0.3) + + if fsearch(self.wrk_file("redis.log"), "undefined symbol: __asan"): + raise Skip("Redis with ASAN not available") + self.run_monitor() def run_monitor(self): -- 2.47.3