Changes between Version 9 and Version 10 of Debugging With Visual Studio


Ignore:
Timestamp:
Mar 2, 2014 5:52:10 PM (10 years ago)
Author:
BJ Burg
Comment:

Fold in details from separate page about DumpRenderTree + VS

Legend:

Unmodified
Added
Removed
Modified
  • Debugging With Visual Studio

    v9 v10  
    17171. Set `DumpRenderTreeLauncher` as your startup project.
    1818
    19 2. Set the layout test as a command argument.
     192. Configure the arguments and environment variables for the test runner.
    2020
    21 In `DumpRenderTreeLauncher`'s properties, go to `Configuration Properties > Debugging` and set the `Command Arguments` field to the full path of the layout test you want to debug.
     21In the DumpRenderTree project in the Solution Explorer window, right-click and select `Properties...`.
     22 * In the `Command Arguments` section, enter the absolute paths for the tests you want to run, separated by spaces.
     23 * In the `Environment` section, put `PATH=$(ProgramFiles)\Common Files\Apple\Apple Application Support;$(PATH)`
     24
     25Click OK to close the Project Properties window.
    2226
    23273. Launch the debugger.
    2428
    25 = Debugging WebKit2 / WebKitTestRunner =
     29Right-click on the DumpRenderTree project, and choose `Debug > Start New Instance`.
     30
     31= Debugging WebKit2 =
    2632
    2733You can attach a single debugger to more than one process. To do this, launch or attach to the first process, then use `Tools > Attach to Process…` or `Ctrl+Alt+P` to attach to the second process. Your breakpoints will apply to both processes.