Changeset 180983 in webkit


Ignore:
Timestamp:
Mar 3, 2015 6:51:43 PM (9 years ago)
Author:
ddkilzer@apple.com
Message:

[iOS] Crash logs can't be found on ios-simulator because WebKitTestRunner returns the wrong process name
<http://webkit.org/b/142243>

Reviewed by Alexey Proskuryakov.

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::webProcessName):
(WTR::TestController::networkProcessName):

  • Return the same process name on iOS and Mac because they both use the same process name for local engineering builds.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r180981 r180983  
     12015-03-03  David Kilzer  <ddkilzer@apple.com>
     2
     3        [iOS] Crash logs can't be found on ios-simulator because WebKitTestRunner returns the wrong process name
     4        <http://webkit.org/b/142243>
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * WebKitTestRunner/TestController.cpp:
     9        (WTR::TestController::webProcessName):
     10        (WTR::TestController::networkProcessName):
     11        - Return the same process name on iOS and Mac because they both
     12          use the same process name for local engineering builds.
     13
    1142015-03-03  David Kilzer  <ddkilzer@apple.com>
    215
  • trunk/Tools/WebKitTestRunner/TestController.cpp

    r180636 r180983  
    695695{
    696696    // FIXME: Find a way to not hardcode the process name.
    697 #if PLATFORM(IOS)
    698     return "com.apple.WebKit.WebContent";
    699 #elif PLATFORM(MAC)
     697#if PLATFORM(COCOA)
    700698    return "com.apple.WebKit.WebContent.Development";
    701699#else
     
    707705{
    708706    // FIXME: Find a way to not hardcode the process name.
    709 #if PLATFORM(IOS)
    710     return "com.apple.WebKit.Networking";
    711 #elif PLATFORM(MAC)
     707#if PLATFORM(COCOA)
    712708    return "com.apple.WebKit.Networking.Development";
    713709#else
Note: See TracChangeset for help on using the changeset viewer.