Changeset 79993 in webkit


Ignore:
Timestamp:
Mar 1, 2011 5:52:50 AM (13 years ago)
Author:
Adam Roben
Message:

Skip another multiprocessing test on Windows

It is sometimes failing (and may be leaving child Python processes around).
<http://webkit.org/b/55087> tracks the failure.

  • Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:

(FuncitonTests.test_getprocesses): Skip this test on Windows.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r79975 r79993  
     12011-03-01  Adam Roben  <aroben@apple.com>
     2
     3        Skip another multiprocessing test on Windows
     4
     5        It is sometimes failing (and may be leaving child Python processes around).
     6        <http://webkit.org/b/55087> tracks the failure.
     7
     8        * Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
     9        (FuncitonTests.test_get__processes): Skip this test on Windows.
     10
    1112011-03-01  Ilya Tikhonovsky  <loislo@chromium.org>
    212
  • trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py

    r78944 r79993  
    120120
    121121    def test_get__processes(self):
     122        # This test sometimes fails on Windows. See <http://webkit.org/b/55087>.
     123        if sys.platform in ('cygwin', 'win32'):
     124            return
     125
    122126        if multiprocessing:
    123127            self.assertTrue(make_broker(self, 'processes') is not None)
Note: See TracChangeset for help on using the changeset viewer.