Commit 358729f3 authored by Matt Wolenetz's avatar Matt Wolenetz Committed by Commit Bot

CrExtensionsPackDialogTest.PackSuccess is flaky on Windows

Conditionally disables this test on OS_WIN.

BUG=832885
TBR=rdevlin.cronin@chromium.org
NO-TRY=True

Change-Id: Ic2a069cfdc4a07d42cf06af42919c7a20947c278
Reviewed-on: https://chromium-review.googlesource.com/1012994Reviewed-by: default avatarMatthew Wolenetz <wolenetz@chromium.org>
Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#550760}
parent c3991fe1
...@@ -520,7 +520,14 @@ TEST_F('CrExtensionsPackDialogTest', 'Interaction', function() { ...@@ -520,7 +520,14 @@ TEST_F('CrExtensionsPackDialogTest', 'Interaction', function() {
this.runMochaTest(extension_pack_dialog_tests.TestNames.Interaction); this.runMochaTest(extension_pack_dialog_tests.TestNames.Interaction);
}); });
TEST_F('CrExtensionsPackDialogTest', 'PackSuccess', function() { // Disabling on Windows due to flaky timeout on some build bots.
// http://crbug.com/832885
GEN('#if defined(OS_WIN)');
GEN('#define MAYBE_PackSuccess DISABLED_PackSuccess');
GEN('#else');
GEN('#define MAYBE_PackSuccess PackSuccess');
GEN('#endif');
TEST_F('CrExtensionsPackDialogTest', 'MAYBE_PackSuccess', function() {
this.runMochaTest(extension_pack_dialog_tests.TestNames.PackSuccess); this.runMochaTest(extension_pack_dialog_tests.TestNames.PackSuccess);
}); });
......
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