Changeset 83764 in webkit


Ignore:
Timestamp:
Apr 13, 2011 2:22:49 PM (13 years ago)
Author:
dpranke@chromium.org
Message:

2011-04-13 Dirk Pranke <dpranke@chromium.org>

Reviewed by Mihai Parparita.

nrwt: enable multiple processes by default on Chromium Win.
https://bugs.webkit.org/show_bug.cgi?id=55163

Re-land r79268; it should be more stable now and will hopefully
work.

  • Scripts/webkitpy/layout_tests/port/chromium_win.py:
  • Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r83760 r83764  
     12011-04-13  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Mihai Parparita.
     4
     5        nrwt: enable multiple processes by default on Chromium Win.
     6        https://bugs.webkit.org/show_bug.cgi?id=55163
     7
     8        Re-land r79268; it should be more stable now and will hopefully
     9        work.
     10
     11        * Scripts/webkitpy/layout_tests/port/chromium_win.py:
     12        * Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
     13
    1142011-04-13  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win.py

    r82705 r83764  
    121121        return 'old-threads'
    122122
     123    def default_worker_model(self):
     124        if self._multiprocessing_is_available:
     125            return 'processes'
     126        return 'old-threads'
     127
    123128    def relative_test_filename(self, filename):
    124129        path = filename[len(self.layout_tests_dir()) + 1:]
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py

    r82705 r83764  
    5858    def _mock_path_from_chromium_base(self, *comps):
    5959        return self._port._filesystem.join("/chromium/src", *comps)
    60 
    61     def test_default_worker_model(self):
    62         port = self.make_port()
    63         if not port:
    64             return
    65 
    66         self.assertEqual(port.default_worker_model(), 'old-threads')
    6760
    6861    def test_setup_environ_for_server(self):
Note: See TracChangeset for help on using the changeset viewer.