Commit 25b9d267 authored by Yi Gu's avatar Yi Gu Committed by Commit Bot

Disable flaky test on TSAN

The test AutofillInteractiveTestWithHistogramTester.BasicFormFill is
flaky on TSAN. See bug for details.

TBR=battre@chromium.org

Bug: 1045709
Change-Id: I98b1e26cecf46ad3ed886ce2b99690e93478a955
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2024921Reviewed-by: default avatarYi Gu <yigu@chromium.org>
Commit-Queue: Yi Gu <yigu@chromium.org>
Cr-Commit-Position: refs/heads/master@{#735935}
parent 5b7ecdb7
......@@ -759,9 +759,15 @@ class AutofillInteractiveTestWithHistogramTester
std::unique_ptr<URLLoaderInterceptor> url_loader_interceptor_;
};
// Test is flaky on Linux TSAN, see http://crbug.com/1045709.
#if defined(THREAD_SANITIZER)
#define MAYBE_BasicFormFill DISABLED_BasicFormFill
#else
#define MAYBE_BasicFormFill BasicFormFill
#endif // THREAD_SANITIZER
// Test that basic form fill is working.
IN_PROC_BROWSER_TEST_F(AutofillInteractiveTestWithHistogramTester,
BasicFormFill) {
MAYBE_BasicFormFill) {
LOG(ERROR) << "crbug/967588: In case of flakes, report log statements to "
"crbug.com/967588";
CreateTestProfile();
......
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