Commit daec42a5 authored by dpranke@chromium.org's avatar dpranke@chromium.org

Disable ActionRunnerTest.testTapElement on Win Debug.

This test is crashing on the Win (dbg) bot on the
chromium.webkit waterfall; the test was added in
https://codereview.chromium.org/323833003/ and
has never run successfully, so this may be exposing
a real bug. Disable it temporarily to green up
the tree while we investigate.

TBR=tonyg@chromium.org
BUG=384181

Review URL: https://codereview.chromium.org/331773003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276894 0039d316-1c4b-4281-b951-d872f2087c98
parent a78385dd
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
from telemetry import test
from telemetry.core import util from telemetry.core import util
from telemetry.core.backends.chrome import tracing_backend from telemetry.core.backends.chrome import tracing_backend
from telemetry.core.timeline import model from telemetry.core.timeline import model
...@@ -168,6 +169,7 @@ class ActionRunnerTest(tab_test_case.TabTestCase): ...@@ -168,6 +169,7 @@ class ActionRunnerTest(tab_test_case.TabTestCase):
element_function='document.body.firstElementChild') element_function='document.body.firstElementChild')
self.assertEquals(3, action_runner.EvaluateJavaScript('valueToTest')) self.assertEquals(3, action_runner.EvaluateJavaScript('valueToTest'))
@test.Disabled('debug')
def testTapElement(self): def testTapElement(self):
self.Navigate('page_with_clickables.html') self.Navigate('page_with_clickables.html')
action_runner = action_runner_module.ActionRunner(self._tab) action_runner = action_runner_module.ActionRunner(self._tab)
......
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