Commit 900f5449 authored by Anatoliy Potapchuk's avatar Anatoliy Potapchuk Committed by Commit Bot

[Sheriff] Disable WebKioskAppLauncherTest on MSAN builds

Example failure: https://ci.chromium.org/p/chromium/builders/ci/Linux%20ChromiumOS%20MSan%20Tests/19576

TBR=apotapchuk@chromium.org

Bug: 1097708
Change-Id: I7c926cdffc37ff418b23ed0a5654fb92129260b0
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2257199Reviewed-by: default avatarAnatoliy Potapchuk <apotapchuk@chromium.org>
Commit-Queue: Anatoliy Potapchuk <apotapchuk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#780709}
parent ca721596
......@@ -180,6 +180,8 @@ class WebKioskAppLauncherTest : public ChromeRenderViewHostTestHarness {
std::unique_ptr<AppWindowCloser> closer_;
};
// TODO(crbug.com/1097708): these tests flakily fail on MSAN Builds.
#if !defined(MEMORY_SANITIZER)
TEST_F(WebKioskAppLauncherTest, NormalFlowNotInstalled) {
SetupAppData(/*installed*/ false);
......@@ -210,6 +212,7 @@ TEST_F(WebKioskAppLauncherTest, NormalFlowNotInstalled) {
CloseAppWindow();
}
#endif
TEST_F(WebKioskAppLauncherTest, NormalFlowAlreadyInstalled) {
SetupAppData(/*installed*/ true);
......@@ -228,6 +231,8 @@ TEST_F(WebKioskAppLauncherTest, NormalFlowAlreadyInstalled) {
CloseAppWindow();
}
// TODO(crbug.com/1097708): these tests flakily fail on MSAN Builds.
#if !defined(MEMORY_SANITIZER)
TEST_F(WebKioskAppLauncherTest, NormalFlowBadLaunchUrl) {
SetupAppData(/*installed*/ false);
......@@ -299,6 +304,7 @@ TEST_F(WebKioskAppLauncherTest, InstallationRestarted) {
CloseAppWindow();
}
#endif
TEST_F(WebKioskAppLauncherTest, UrlNotLoaded) {
SetupAppData(/*installed*/ false);
......
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