Commit d982193d authored by Kevin McNee's avatar Kevin McNee Committed by Commit Bot

Disable ActiveDirectoryLoginAutocompleteTest.LoginSuccess under MSAN

This test is flaky under MSAN.

Tbr: alemate@chromium.org
Bug: 1031545
Change-Id: Ie22aff087919b8f7c4f74d06710b500734d6766a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2095405Reviewed-by: default avatarKevin McNee <mcnee@chromium.org>
Commit-Queue: Kevin McNee <mcnee@chromium.org>
Cr-Commit-Position: refs/heads/master@{#748340}
parent 51f2f743
...@@ -268,7 +268,14 @@ IN_PROC_BROWSER_TEST_F(ActiveDirectoryWebUILoginTest, ...@@ -268,7 +268,14 @@ IN_PROC_BROWSER_TEST_F(ActiveDirectoryWebUILoginTest,
} }
// Tests that autocomplete works. Submits username without domain. // Tests that autocomplete works. Submits username without domain.
IN_PROC_BROWSER_TEST_F(ActiveDirectoryLoginAutocompleteTest, LoginSuccess) { // TODO(1031545): Flaky under MSAN.
#if defined(MEMORY_SANITIZER)
#define MAYBE_LoginSuccess DISABLED_LoginSuccess
#else
#define MAYBE_LoginSuccess LoginSuccess
#endif
IN_PROC_BROWSER_TEST_F(ActiveDirectoryLoginAutocompleteTest,
MAYBE_LoginSuccess) {
OobeBaseTest::WaitForSigninScreen(); OobeBaseTest::WaitForSigninScreen();
ASSERT_TRUE(InstallAttributes::Get()->IsActiveDirectoryManaged()); ASSERT_TRUE(InstallAttributes::Get()->IsActiveDirectoryManaged());
ad_login_.TestNoError(); ad_login_.TestNoError();
......
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