Changeset 128364 in webkit


Ignore:
Timestamp:
Sep 12, 2012 2:49:09 PM (12 years ago)
Author:
kenneth@webkit.org
Message:

Respect WEBKITOUTPUTDIR when running EFL tests
https://bugs.webkit.org/show_bug.cgi?id=96528

Reviewed by Dirk Pranke.

Expose user set WEBKITOUTPUTDIR to the web process.

  • Scripts/webkitpy/layout_tests/port/driver.py:

(Driver._start): Add WEBKITOUTPUTDIR to the environment
of the web process and its potential jhbuild wrapper.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r128362 r128364  
     12012-09-12  Kenneth Rohde Christiansen  <kenneth@webkit.org>
     2
     3        Respect WEBKITOUTPUTDIR when running EFL tests
     4        https://bugs.webkit.org/show_bug.cgi?id=96528
     5
     6        Reviewed by Dirk Pranke.
     7
     8        Expose user set WEBKITOUTPUTDIR to the web process.
     9
     10        * Scripts/webkitpy/layout_tests/port/driver.py:
     11        (Driver._start): Add WEBKITOUTPUTDIR to the environment
     12        of the web process and its potential jhbuild wrapper.
     13
    1142012-09-12  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/driver.py

    r127734 r128364  
    3434import sys
    3535import time
     36import os
    3637
    3738from webkitpy.common.system import path
     
    277278        environment['DUMPRENDERTREE_TEMP'] = str(self._driver_tempdir)
    278279        environment['LOCAL_RESOURCE_ROOT'] = self._port.layout_tests_dir()
     280        if 'WEBKITOUTPUTDIR' in os.environ:
     281            environment['WEBKITOUTPUTDIR'] = os.environ['WEBKITOUTPUTDIR']
    279282        self._crashed_process_name = None
    280283        self._crashed_pid = None
Note: See TracChangeset for help on using the changeset viewer.