Skip to content

Commit

Permalink
[Sheriff] Disable flaky test WebAppIntegration.SwitchIncognitoProfile
Browse files Browse the repository at this point in the history
Test WebAppIntegration.SwitchIncognitoProfile is flaky on Lacros Asan.
Disable it.

Bug: 1492643
Change-Id: Ie4949f7127956d40d15cab4ab822748e9ca26875
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4939598
Auto-Submit: Devlin Cronin <rdevlin.cronin@chromium.org>
Reviewed-by: Kelvin Jiang <kelvinjiang@chromium.org>
Commit-Queue: Devlin Cronin <rdevlin.cronin@chromium.org>
Owners-Override: Devlin Cronin <rdevlin.cronin@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1209737}
  • Loading branch information
rdcronin authored and Chromium LUCI CQ committed Oct 13, 2023
1 parent 1302476 commit 44f1dc6
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,13 @@ IN_PROC_BROWSER_TEST_F(WebAppIntegration,
helper_.CheckWindowControlsOverlay(Site::kWco, IsOn::kOn);
}

IN_PROC_BROWSER_TEST_F(WebAppIntegration, SwitchIncognitoProfile) {
// Flaky on Lacros ASan. https://crbug.com/1492643.
#if defined(ADDRESS_SANITIZER) && BUILDFLAG(IS_CHROMEOS_LACROS)
#define MAYBE_SwitchIncognitoProfile DISABLED_SwitchIncognitoProfile
#else
#define MAYBE_SwitchIncognitoProfile SwitchIncognitoProfile
#endif
IN_PROC_BROWSER_TEST_F(WebAppIntegration, MAYBE_SwitchIncognitoProfile) {
helper_.SwitchIncognitoProfile();
helper_.NavigateBrowser(Site::kStandalone);
helper_.CheckCreateShortcutNotShown();
Expand Down

0 comments on commit 44f1dc6

Please sign in to comment.