Changeset 64129 in webkit


Ignore:
Timestamp:
Jul 27, 2010 8:25:05 AM (14 years ago)
Author:
Adam Roben
Message:

Fix the path to InjectedBundle.dll in Debug_Internal builds

Fixes <http://webkit.org/b/42994> WebKitTestRunner fails to load
InjectedBundle.dll in the Debug_Internal configuration

Reviewed by Anders Carlsson.

  • WebKitTestRunner/win/TestControllerWin.cpp:

(WTR::TestController::initializeInjectedBundlePath): Add the _debug
suffix only in Debug_All builds.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r64123 r64129  
     12010-07-26  Adam Roben  <aroben@apple.com>
     2
     3        Fix the path to InjectedBundle.dll in Debug_Internal builds
     4
     5        Fixes <http://webkit.org/b/42994> WebKitTestRunner fails to load
     6        InjectedBundle.dll in the Debug_Internal configuration
     7
     8        Reviewed by Anders Carlsson.
     9
     10        * WebKitTestRunner/win/TestControllerWin.cpp:
     11        (WTR::TestController::initializeInjectedBundlePath): Add the _debug
     12        suffix only in Debug_All builds.
     13
    1142010-07-25  Mahesh Kulkarni  <mahesh.kulkarni@nokia.com>
    215
  • trunk/WebKitTools/WebKitTestRunner/win/TestControllerWin.cpp

    r63703 r64129  
    4242    CFStringRef exeContainerPath = CFURLCopyFileSystemPath(CFURLCreateCopyDeletingLastPathComponent(0, CFBundleCopyExecutableURL(CFBundleGetMainBundle())), kCFURLWindowsPathStyle);
    4343    CFMutableStringRef bundlePath = CFStringCreateMutableCopy(0, 0, exeContainerPath);
    44 #ifndef NDEBUG
     44#ifdef DEBUG_ALL
    4545    CFStringAppendCString(bundlePath, "\\InjectedBundle_debug.dll", kCFStringEncodingWindowsLatin1);
    4646#else
Note: See TracChangeset for help on using the changeset viewer.