From 2cabf27736b0d897f0a927a1d403a945ed08aeab Mon Sep 17 00:00:00 2001 From: Felix Hanau Date: Wed, 27 Nov 2024 11:58:12 -0500 Subject: [PATCH] [build] Add missing no-asan tag This is needed following #3140, #3166 adds a new python test which also needs the tag. --- src/cloudflare/internal/test/aig/BUILD.bazel | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cloudflare/internal/test/aig/BUILD.bazel b/src/cloudflare/internal/test/aig/BUILD.bazel index 37e0f16380b..d7c95c317a3 100644 --- a/src/cloudflare/internal/test/aig/BUILD.bazel +++ b/src/cloudflare/internal/test/aig/BUILD.bazel @@ -15,4 +15,8 @@ py_wd_test( "*.js", "*.py", ]), + tags = [ + # TODO(someday): Fix asan failure for this, see https://github.com/cloudflare/workerd/pull/3140#discussion_r1858273318 + "no-asan", + ], )