Changeset 247258 in webkit


Ignore:
Timestamp:
Jul 9, 2019 9:14:04 AM (5 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-build] Do not run unix commands for windows in PrintConfiguration
https://bugs.webkit.org/show_bug.cgi?id=199605

Reviewed by Jonathan Bedard.

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

Legend:

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

    r247131 r247258  
    12221222    warnOnFailure = False
    12231223    logEnviron = False
    1224     command_list_generic = [['hostname'],
    1225                     ['df', '-hl'],
    1226                     ['date']]
    1227     command_list_apple = [['sw_vers'], ['xcodebuild', '-sdk', '-version']]
    1228     command_list_linux = [['uname', '-a']]
     1224    command_list_generic = [['hostname']]
     1225    command_list_apple = [['df', '-hl'], ['date'], ['sw_vers'], ['xcodebuild', '-sdk', '-version']]
     1226    command_list_linux = [['df', '-hl'], ['date'], ['uname', '-a']]
    12291227    command_list_win = [[]]  # TODO: add windows specific commands here
    12301228
  • trunk/Tools/BuildSlaveSupport/ews-build/steps_unittest.py

    r247131 r247258  
    18331833        self.expectRemoteCommands(
    18341834            ExpectShell(command=['hostname'], workdir='wkdir', timeout=60, logEnviron=False) + 0,
    1835             ExpectShell(command=['df', '-hl'], workdir='wkdir', timeout=60, logEnviron=False) + 0,
    1836             ExpectShell(command=['date'], workdir='wkdir', timeout=60, logEnviron=False) + 0,
    18371835        )
    18381836        self.expectOutcome(result=SUCCESS, state_string='Printed configuration')
  • trunk/Tools/ChangeLog

    r247244 r247258  
     12019-07-08  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-build] Do not run unix commands for windows in PrintConfiguration
     4        https://bugs.webkit.org/show_bug.cgi?id=199605
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-build/steps.py:
     9
    1102019-07-08  Fujii Hironori  <Hironori.Fujii@sony.com>
    211
Note: See TracChangeset for help on using the changeset viewer.