Changeset 264626 in webkit


Ignore:
Timestamp:
Jul 20, 2020, 3:38:40 PM (5 years ago)
Author:
aakash_jain@apple.com
Message:

[ews] Use -q while unzipping layout-test-results.zip
https://bugs.webkit.org/show_bug.cgi?id=214571

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-build/steps.py:
  • BuildSlaveSupport/ews-build/steps_unittest.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-build/steps.py

    r264327 r264626  
    24152415        self.zipFile = Interpolate('public_html/results/%(prop:buildername)s/r%(prop:patch_id)s-%(prop:buildnumber)s{}.zip'.format(identifier))
    24162416        self.resultDirectory = Interpolate('public_html/results/%(prop:buildername)s/r%(prop:patch_id)s-%(prop:buildnumber)s{}'.format(identifier))
    2417         self.command = ['unzip', self.zipFile, '-d', self.resultDirectory]
     2417        self.command = ['unzip', '-q', self.zipFile, '-d', self.resultDirectory]
    24182418
    24192419        master.MasterShellCommand.__init__(self, command=self.command, logEnviron=False)
  • trunk/Tools/BuildSlaveSupport/ews-build/steps_unittest.py

    r264229 r264626  
    30513051        self.expectLocalCommands(
    30523052            ExpectMasterShellCommand(command=['unzip',
     3053                                              '-q',
    30533054                                              'public_html/results/macOS-Sierra-Release-WK2-Tests-EWS/r1234-12.zip',
    30543055                                              '-d',
     
    30693070        self.expectLocalCommands(
    30703071            ExpectMasterShellCommand(command=['unzip',
     3072                                              '-q',
    30713073                                              'public_html/results/iOS-12-Simulator-WK2-Tests-EWS/r1234-12-rerun.zip',
    30723074                                              '-d',
     
    30873089        self.expectLocalCommands(
    30883090            ExpectMasterShellCommand(command=['unzip',
     3091                                              '-q',
    30893092                                              'public_html/results/macOS-Sierra-Release-WK2-Tests-EWS/r1234-12.zip',
    30903093                                              '-d',
  • trunk/Tools/ChangeLog

    r264621 r264626  
     12020-07-20  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews] Use -q while unzipping layout-test-results.zip
     4        https://bugs.webkit.org/show_bug.cgi?id=214571
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9        * BuildSlaveSupport/ews-build/steps_unittest.py:
     10
    1112020-07-20  Keith Miller  <keith_miller@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.