Commit 2d8ed765 authored by tonyg@chromium.org's avatar tonyg@chromium.org

[Telemetry] Disable testPagesetRepeat on win.

It is failing and I suspect the problem is in the unittest not in the code
under test, so I'm disabling rather than reverting the other change.

File "E:\b\build\slave\XP_Tests__2_\build\src\tools\telemetry\telemetry\page\page_runner_unittest.py", line 240, in testPagesetRepeat
os.remove(output_file)
WindowsError: [Error 32] The process cannot access the file because it is being used by another process: 'c:\\docume~1\\chrome~2\\locals~1\\temp\\tmpiwpnmk'

TBR=dalecurtis@chromium.org
NOTRY=True
NOTREECHECKS=True
BUG=

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266411 0039d316-1c4b-4281-b951-d872f2087c98
parent 2ba7ee19
...@@ -7,6 +7,7 @@ import os ...@@ -7,6 +7,7 @@ import os
import tempfile import tempfile
import unittest import unittest
from telemetry import decorators
from telemetry.core import browser_finder from telemetry.core import browser_finder
from telemetry.core import exceptions from telemetry.core import exceptions
from telemetry.core import user_agent from telemetry.core import user_agent
...@@ -200,6 +201,7 @@ class PageRunnerTests(unittest.TestCase): ...@@ -200,6 +201,7 @@ class PageRunnerTests(unittest.TestCase):
self.assertEquals(0, len(results.successes)) self.assertEquals(0, len(results.successes))
self.assertEquals(0, len(results.failures)) self.assertEquals(0, len(results.failures))
@decorators.Disabled('win')
def testPagesetRepeat(self): def testPagesetRepeat(self):
ps = page_set.PageSet() ps = page_set.PageSet()
expectations = test_expectations.TestExpectations() expectations = test_expectations.TestExpectations()
......
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