From: Daniel Salzman Date: Mon, 27 Apr 2026 06:38:05 +0000 (+0200) Subject: tests-extra: add check for Redis without ASAN X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;p=thirdparty%2Fknot-dns.git tests-extra: add check for Redis without ASAN --- 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):