Changeset 261871 in webkit


Ignore:
Timestamp:
May 19, 2020 11:06:15 AM (4 years ago)
Author:
clopez@igalia.com
Message:

[buildbot][GTK][WPE] Pass --verbose flag when running JavaScriptCore tests
https://bugs.webkit.org/show_bug.cgi?id=212088

Reviewed by Philippe Normand.

Pass the "--verbose" flag to run-javascriptcore-tests also for GTK and WPE.
Also change the way we are currently passing "--memory-limited" to make
it more obvious that this is needed for all Linux bots (GTK+WPE+JSCOnly).

  • BuildSlaveSupport/build.webkit.org-config/steps.py:

(RunJavaScriptCoreTests.start):
(RunRemoteJavaScriptCoreTests.start):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/steps.py

    r261739 r261871  
    382382        # Currently run-javascriptcore-test doesn't support run javascript core test binaries list below remotely
    383383        if architecture in ['mips', 'armv7', 'aarch64']:
    384             self.command += ['--no-testmasm', '--no-testair', '--no-testb3', '--no-testdfg', '--no-testapi', '--verbose']
     384            self.command += ['--no-testmasm', '--no-testair', '--no-testb3', '--no-testdfg', '--no-testapi']
    385385        # Linux bots have currently problems with JSC tests that try to use large amounts of memory.
    386386        # Check: https://bugs.webkit.org/show_bug.cgi?id=175140
    387         if platform in ('gtk', 'wpe'):
    388             self.setCommand(self.command + ['--memory-limited'])
     387        if platform in ('gtk', 'wpe', 'jsc-only'):
     388            self.setCommand(self.command + ['--memory-limited', '--verbose'])
    389389        # WinCairo uses the Windows command prompt, not Cygwin.
    390390        elif platform == 'wincairo':
     
    415415class RunRemoteJavaScriptCoreTests(RunJavaScriptCoreTests):
    416416    def start(self):
    417         self.setCommand(self.command + ["--memory-limited", "--remote-config-file", "../../remote-jsc-tests-config.json"])
     417        self.setCommand(self.command + ["--remote-config-file", "../../remote-jsc-tests-config.json"])
    418418        return RunJavaScriptCoreTests.start(self)
    419419
  • trunk/Tools/ChangeLog

    r261862 r261871  
     12020-05-19  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        [buildbot][GTK][WPE] Pass --verbose flag when running JavaScriptCore tests
     4        https://bugs.webkit.org/show_bug.cgi?id=212088
     5
     6        Reviewed by Philippe Normand.
     7
     8        Pass the "--verbose" flag to run-javascriptcore-tests also for GTK and WPE.
     9        Also change the way we are currently passing "--memory-limited" to make
     10        it more obvious that this is needed for all Linux bots (GTK+WPE+JSCOnly).
     11
     12        * BuildSlaveSupport/build.webkit.org-config/steps.py:
     13        (RunJavaScriptCoreTests.start):
     14        (RunRemoteJavaScriptCoreTests.start):
     15
    1162020-05-19  Michael Catanzaro  <mcatanzaro@gnome.org>
    217
Note: See TracChangeset for help on using the changeset viewer.