Changeset 230167 in webkit


Ignore:
Timestamp:
Apr 2, 2018 11:34:35 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

webkitpy: Use current environment value for GST_DEBUG(_FILE) and DOT_DIR env vars
https://bugs.webkit.org/show_bug.cgi?id=184036

Patch by Thibault Saunier <tsaunier@igalia.com> on 2018-04-02
Reviewed by Philippe Normand.

Those variables are for debug purpose and should not change the behaviour
itself, and developers expect them to have effect.

  • Scripts/webkitpy/port/gtk.py:

(GtkPort.setup_environ_for_server):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r230166 r230167  
     12018-04-02  Thibault Saunier  <tsaunier@igalia.com>
     2
     3        webkitpy: Use current environment value for GST_DEBUG(_FILE) and DOT_DIR env vars
     4        https://bugs.webkit.org/show_bug.cgi?id=184036
     5
     6        Reviewed by Philippe Normand.
     7
     8        Those variables are for debug purpose and should not change the behaviour
     9        itself, and developers expect them to have effect.
     10
     11        * Scripts/webkitpy/port/gtk.py:
     12        (GtkPort.setup_environ_for_server):
     13
    1142018-04-02  Daniel Bates  <dabates@apple.com>
    215
  • trunk/Tools/Scripts/webkitpy/port/gtk.py

    r228731 r230167  
    123123        environment['TEST_RUNNER_TEST_PLUGIN_PATH'] = self._build_path('lib', 'plugins')
    124124        self._copy_value_from_environ_if_set(environment, 'WEBKIT_OUTPUTDIR')
     125        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG')
     126        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_DUMP_DOT_DIR')
     127        self._copy_value_from_environ_if_set(environment, 'GST_DEBUG_FILE')
    125128
    126129        # Configure the software libgl renderer if jhbuild ready and we test inside a virtualized window system
Note: See TracChangeset for help on using the changeset viewer.