Commit 072b939b authored by David Roger's avatar David Roger Committed by Commit Bot

Disable flaky DevToolsSanityTest.TestScriptsTabIsPopulatedOnInspectedPageRefresh

TBR=pfeldman

Bug: 1013003
Change-Id: I6b98b0c4698c6c40d323bc996603e6595d3e4340
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1852291Reviewed-by: default avatarDavid Roger <droger@chromium.org>
Commit-Queue: David Roger <droger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#704580}
parent 57882da9
...@@ -832,9 +832,16 @@ IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) { ...@@ -832,9 +832,16 @@ IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) {
// Tests that scripts tab is populated with inspected scripts even if it // Tests that scripts tab is populated with inspected scripts even if it
// hadn't been shown by the moment inspected paged refreshed. // hadn't been shown by the moment inspected paged refreshed.
// @see http://crbug.com/26312 // @see http://crbug.com/26312
IN_PROC_BROWSER_TEST_F( // This test is flaky on windows and linux asan. See https://crbug.com/1013003
DevToolsSanityTest, #if defined(OS_WIN) || defined(OS_MACOSX)
TestScriptsTabIsPopulatedOnInspectedPageRefresh) { #define MAYBE_TestScriptsTabIsPopulatedOnInspectedPageRefresh \
DISABLED_TestScriptsTabIsPopulatedOnInspectedPageRefresh
#else
#define MAYBE_TestScriptsTabIsPopulatedOnInspectedPageRefresh \
TestScriptsTabIsPopulatedOnInspectedPageRefresh
#endif
IN_PROC_BROWSER_TEST_F(DevToolsSanityTest,
MAYBE_TestScriptsTabIsPopulatedOnInspectedPageRefresh) {
RunTest("testScriptsTabIsPopulatedOnInspectedPageRefresh", RunTest("testScriptsTabIsPopulatedOnInspectedPageRefresh",
kDebuggerTestPage); kDebuggerTestPage);
} }
......
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