diff --git a/absl/container/internal/raw_hash_set_test.cc b/absl/container/internal/raw_hash_set_test.cc index 07c2b7e8690..1d0af3f7df2 100644 --- a/absl/container/internal/raw_hash_set_test.cc +++ b/absl/container/internal/raw_hash_set_test.cc @@ -2478,6 +2478,10 @@ TYPED_TEST(SooTest, IterationOrderChangesByInstance) { } TYPED_TEST(SooTest, IterationOrderChangesOnRehash) { +#ifdef ABSL_HAVE_ADDRESS_SANITIZER + GTEST_SKIP() << "Hash quality is lower in asan mode, causing flakiness."; +#endif + // We test different sizes with many small numbers, because small table // resize has a different codepath. // Note: iteration order for size() <= 1 is always the same.