⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 263848 in webkit


Ignore:
Timestamp:
Jul 2, 2020, 9:31:46 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

REGRESSION(r263625): run-minibrowser fails on mac
https://bugs.webkit.org/show_bug.cgi?id=213876

Patch by Philippe Normand <pnormand@igalia.com> on 2020-07-02
Reviewed by Darin Adler.

  • Scripts/webkitpy/port/base.py:

(Port.run_minibrowser): _run_script() expects a string as first argument. Command-line args
are passed through a keyword.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r263843 r263848  
     12020-07-02  Philippe Normand  <pnormand@igalia.com>
     2
     3        REGRESSION(r263625): run-minibrowser fails on mac
     4        https://bugs.webkit.org/show_bug.cgi?id=213876
     5
     6        Reviewed by Darin Adler.
     7
     8        * Scripts/webkitpy/port/base.py:
     9        (Port.run_minibrowser): _run_script() expects a string as first argument. Command-line args
     10        are passed through a keyword.
     11
    1122020-07-02  Carlos Garcia Campos  <cgarcia@igalia.com>
    213
  • trunk/Tools/Scripts/webkitpy/port/base.py

    r263657 r263848  
    13701370    def run_minibrowser(self, args):
    13711371        # FIXME: Migrate to webkitpy based run-minibrowser. https://bugs.webkit.org/show_bug.cgi?id=213464
    1372         return self._run_script(["old-run-minibrowser", ] + args)
     1372        return self._run_script("old-run-minibrowser", args=args)
    13731373
    13741374    @memoized
Note: See TracChangeset for help on using the changeset viewer.