Changeset 51546 in webkit


Ignore:
Timestamp:
Dec 1, 2009 10:35:29 AM (14 years ago)
Author:
Adam Roben
Message:

Fix tests that use the TestNetscapePlugin in Debug_Internal builds

Reviewed by Ada Chan.

Fixes <http://webkit.org/b/32027> REGRESSION (r49705): Tests that use
TestNetscapePlugin fail in Debug_Internal builds

  • DumpRenderTree/win/DumpRenderTree.cpp: Use the "_Debug" plugin

directory in Debug and Debug_All builds, but not in Debug_Internal
builds.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r51545 r51546  
     12009-12-01  Adam Roben  <aroben@apple.com>
     2
     3        Fix tests that use the TestNetscapePlugin in Debug_Internal builds
     4
     5        Reviewed by Ada Chan.
     6
     7        Fixes <http://webkit.org/b/32027> REGRESSION (r49705): Tests that use
     8        TestNetscapePlugin fail in Debug_Internal builds
     9
     10        * DumpRenderTree/win/DumpRenderTree.cpp: Use the "_Debug" plugin
     11        directory in Debug and Debug_All builds, but not in Debug_Internal
     12        builds.
     13
    1142009-12-01  Adam Roben  <aroben@apple.com>
    215
  • trunk/WebKitTools/DumpRenderTree/win/DumpRenderTree.cpp

    r51196 r51546  
    6767using namespace std;
    6868
    69 #ifndef NDEBUG
     69#if !defined(NDEBUG) && (!defined(DEBUG_INTERNAL) || defined(DEBUG_ALL))
    7070const LPWSTR TestPluginDir = L"TestNetscapePlugin_Debug";
    7171#else
Note: See TracChangeset for help on using the changeset viewer.