Changeset 66946 in webkit


Ignore:
Timestamp:
Sep 7, 2010 7:56:45 PM (14 years ago)
Author:
tkent@chromium.org
Message:

2010-09-07 Kent Tamura <tkent@chromium.org>

Reviewed by Tony Chang.

test-webkitpy: Fix load error of
webkitpy/layout_tests/port/factory_unittest.py on Win32 Python
https://bugs.webkit.org/show_bug.cgi?id=45356 Need a short

  • Scripts/webkitpy/layout_tests/port/server_process.py: Avoid to import fcntl on win32. Win32 Python doesn't have fcntl and we don't use server_process.py on Win32 Python. However unittest.py tries to load everything in a module.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r66945 r66946  
     12010-09-07  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        test-webkitpy: Fix load error of
     6        webkitpy/layout_tests/port/factory_unittest.py on Win32 Python
     7        https://bugs.webkit.org/show_bug.cgi?id=45356 Need a short
     8
     9        * Scripts/webkitpy/layout_tests/port/server_process.py:
     10          Avoid to import fcntl on win32. Win32 Python doesn't have fcntl
     11          and we don't use server_process.py on Win32 Python. However
     12          unittest.py tries to load everything in a module.
     13
    1142010-09-07  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/server_process.py

    r66937 r66946  
    3030"""Package that implements the ServerProcess wrapper class"""
    3131
    32 import fcntl
    3332import logging
    3433import os
     
    3837import sys
    3938import time
     39if sys.platform != 'win32':
     40    import fcntl
    4041
    4142from webkitpy.common.system.executive import Executive
Note: See TracChangeset for help on using the changeset viewer.