Commit fe1282a1 authored by Armando Miraglia's avatar Armando Miraglia Committed by Commit Bot

[Sheriff] Disabling test because of flakyness on Linux ASan/Tsan.

TBR=mmoskvitin

Bug: 1020070
Change-Id: I2c5f2790ec98ed7587f73cc15a88eeb059303809
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1891193Reviewed-by: default avatarArmando Miraglia <armax@chromium.org>
Commit-Queue: Armando Miraglia <armax@chromium.org>
Cr-Commit-Position: refs/heads/master@{#711177}
parent 29ab72b2
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
#include "base/macros.h" #include "base/macros.h"
#include "base/test/bind_test_util.h" #include "base/test/bind_test_util.h"
#include "base/time/time.h" #include "base/time/time.h"
#include "build/build_config.h"
#include "chrome/browser/sync/test/integration/bookmarks_helper.h" #include "chrome/browser/sync/test/integration/bookmarks_helper.h"
#include "chrome/browser/sync/test/integration/encryption_helper.h" #include "chrome/browser/sync/test/integration/encryption_helper.h"
#include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
...@@ -181,7 +182,15 @@ IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, NoSessions) { ...@@ -181,7 +182,15 @@ IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, NoSessions) {
EXPECT_TRUE(ExpectUserEvents({specifics})); EXPECT_TRUE(ExpectUserEvents({specifics}));
} }
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, Encryption) { // Flaky tests on ASan/TSan on linux: http://crbug.com/1020070
#if defined(OS_LINUX) && \
(defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER))
#define MAYBE_Encryption DISABLED_Encryption
#else
#define MAYBE_Encryption Encryption
#endif
IN_PROC_BROWSER_TEST_F(SingleClientUserEventsSyncTest, MAYBE_Encryption) {
const UserEventSpecifics test_event1 = const UserEventSpecifics test_event1 =
CreateTestEvent(base::Time() + base::TimeDelta::FromMicroseconds(1)); CreateTestEvent(base::Time() + base::TimeDelta::FromMicroseconds(1));
const UserEventSpecifics test_event2 = const UserEventSpecifics test_event2 =
......
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