Changeset 232789 in webkit


Ignore:
Timestamp:
Jun 13, 2018 3:50:29 AM (6 years ago)
Author:
clopez@igalia.com
Message:

[JSCOnly] Add a MIPS32el JSCOnly EWS (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=186523

Unreviewed follow-up fix after r232748

  • Scripts/webkitpy/common/config/ports.py:

(JscOnlyPort.build_jsc_command): It is needed to pass a --jsc-only argument to the build-jsc script.

  • Scripts/webkitpy/common/config/ports_unittest.py:

(DeprecatedPortTest.test_jsconly_port):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r232786 r232789  
     12018-06-13  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        [JSCOnly] Add a MIPS32el JSCOnly EWS (follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=186523
     5
     6        Unreviewed follow-up fix after r232748
     7
     8        * Scripts/webkitpy/common/config/ports.py:
     9        (JscOnlyPort.build_jsc_command): It is needed to pass a --jsc-only argument to the build-jsc script.
     10        * Scripts/webkitpy/common/config/ports_unittest.py:
     11        (DeprecatedPortTest.test_jsconly_port):
     12
    1132018-06-12  Thibault Saunier  <tsaunier@igalia.com>
    214
  • trunk/Tools/Scripts/webkitpy/common/config/ports.py

    r232748 r232789  
    239239    def build_jsc_command(self, build_style=None):
    240240        command = self.script_shell_command("build-jsc")
    241         return self._append_build_style_flag(command, build_style)
     241        command.append("--jsc-only")
     242        return self._append_build_style_flag(command, build_style)
  • trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py

    r232748 r232789  
    6565    def test_jsconly_port(self):
    6666        self.assertEqual(JscOnlyPort().flag(), "--port=jsc-only")
    67         self.assertEqual(JscOnlyPort().build_jsc_command(), DeprecatedPort().script_shell_command("build-jsc"))
    68         self.assertEqual(JscOnlyPort().build_jsc_command(build_style="release"), DeprecatedPort().script_shell_command("build-jsc") + ["--release"])
    69         self.assertEqual(JscOnlyPort().build_jsc_command(build_style="debug"), DeprecatedPort().script_shell_command("build-jsc") + ["--debug"])
     67        self.assertEqual(JscOnlyPort().build_jsc_command(), DeprecatedPort().script_shell_command("build-jsc") + ["--jsc-only"])
     68        self.assertEqual(JscOnlyPort().build_jsc_command(build_style="release"), DeprecatedPort().script_shell_command("build-jsc") + ["--jsc-only", "--release"])
     69        self.assertEqual(JscOnlyPort().build_jsc_command(build_style="debug"), DeprecatedPort().script_shell_command("build-jsc") + ["--jsc-only", "--debug"])
Note: See TracChangeset for help on using the changeset viewer.