Commit 1baf3ce6 authored by Guido Urdaneta's avatar Guido Urdaneta

Disable flaky AddressSpaceRandomizationTest.Random on Linux TSAN

Bug: 809367
Change-Id: If1a3e114a0bb31bfb99d54ec17396bb6bf556227
TBR: haraken@chromium.org
Reviewed-on: https://chromium-review.googlesource.com/903922Reviewed-by: default avatarGuido Urdaneta <guidou@chromium.org>
Cr-Commit-Position: refs/heads/master@{#534679}
parent 5ab60ca7
......@@ -187,7 +187,13 @@ void RandomBitCorrelation(int random_bit) {
}
}
TEST(AddressSpaceRandomizationTest, Random) {
// TODO(crbug.com/809367): Flaky on Linux TSAN.
#if defined(OS_LINUX) && defined(THREAD_SANITIZER)
#define MAYBE_Random DISABLED_Random
#else
#define MAYBE_Random Random
#endif
TEST(AddressSpaceRandomizationTest, MAYBE_Random) {
uintptr_t mask = GetMask();
if (!mask)
return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment