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

Changeset 249151 in webkit


Ignore:
Timestamp:
Aug 27, 2019, 11:01:31 AM (7 years ago)
Author:
Jonathan Bedard
Message:

run-webkit-tests: Use -noBulkSymbolication when calling spindump (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=201000
<rdar://problem/53778938>

Unreviewed follow-up fix.

  • Scripts/webkitpy/port/darwin.py:

(DarwinPort.sample_process): Run spindump without -noBulkSymbolication if previous
spindump call failed.

  • Scripts/webkitpy/port/darwin_testcase.py:
  • Scripts/webkitpy/port/ios_device_unittest.py:
Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r249148 r249151  
     12019-08-27  Jonathan Bedard  <jbedard@apple.com>
     2
     3        run-webkit-tests: Use -noBulkSymbolication when calling spindump (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=201000
     5        <rdar://problem/53778938>
     6
     7        Unreviewed follow-up fix.
     8
     9        * Scripts/webkitpy/port/darwin.py:
     10        (DarwinPort.sample_process): Run spindump without -noBulkSymbolication if previous
     11        spindump call failed.
     12        * Scripts/webkitpy/port/darwin_testcase.py:
     13        * Scripts/webkitpy/port/ios_device_unittest.py:
     14
    1152019-08-27  Aakash Jain  <aakash_jain@apple.com>
    216
  • trunk/Tools/Scripts/webkitpy/port/darwin.py

    r249023 r249151  
    182182
    183183                # FIXME: Remove the fallback when we no longer support Catalina.
    184                 if not exit_code:
     184                if exit_code:
    185185                    host.executive.run_command(spindump_command)
    186186                host.filesystem.move_to_base_host(DarwinPort.tailspin_file_path(host, name, pid, str(tempdir)),
  • trunk/Tools/Scripts/webkitpy/port/darwin_testcase.py

    r249023 r249151  
    110110        expected_stdout = """['/usr/bin/sudo', '-n', '/usr/bin/tailspin', 'save', '-n', '/__im_tmp/tmp_0_/test-42-tailspin-temp.txt']
    111111['/usr/sbin/spindump', '-i', '/__im_tmp/tmp_0_/test-42-tailspin-temp.txt', '-file', '/__im_tmp/tmp_0_/test-42-tailspin.txt', '-noBulkSymbolication']
    112 ['/usr/sbin/spindump', '-i', '/__im_tmp/tmp_0_/test-42-tailspin-temp.txt', '-file', '/__im_tmp/tmp_0_/test-42-tailspin.txt']
    113112"""
    114113        OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42], expected_stdout=expected_stdout)
  • trunk/Tools/Scripts/webkitpy/port/ios_device_unittest.py

    r249023 r249151  
    5757        expected_stdout = """['/usr/bin/tailspin', 'save', '-n', '/__im_tmp/tmp_0_/test-42-tailspin-temp.txt']
    5858['/usr/sbin/spindump', '-i', '/__im_tmp/tmp_0_/test-42-tailspin-temp.txt', '-file', '/__im_tmp/tmp_0_/test-42-tailspin.txt', '-noBulkSymbolication']
    59 ['/usr/sbin/spindump', '-i', '/__im_tmp/tmp_0_/test-42-tailspin-temp.txt', '-file', '/__im_tmp/tmp_0_/test-42-tailspin.txt']
    6059"""
    6160        OutputCapture().assert_outputs(self, port.sample_process, args=['test', 42], expected_stdout=expected_stdout)
Note: See TracChangeset for help on using the changeset viewer.