Bug 55225 - old-run-webkit-tests sets the post-mortem debugger for 64-bit apps, but should set it for 32-bit apps instead
Summary: old-run-webkit-tests sets the post-mortem debugger for 64-bit apps, but shoul...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows 7
: P2 Normal
Assignee: Nobody
URL:
Keywords: PlatformOnly
Depends on: 55224
Blocks: 44135
  Show dependency treegraph
 
Reported: 2011-02-25 09:28 PST by Adam Roben (:aroben)
Modified: 2011-02-25 10:49 PST (History)
2 users (show)

See Also:


Attachments
Set the 32-bit post-mortem debugger on 64-bit OSes (2.25 KB, patch)
2011-02-25 09:36 PST, Adam Roben (:aroben)
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Adam Roben (:aroben) 2011-02-25 09:28:05 PST
old-run-webkit-tests has code to configure the post-mortem debugger (which we use for saving crash logs). It currently sets the post-mortem debugger for 64-bit apps. But all of our test apps are 32-bit, so we should set the 32-bit post-mortem debugger instead.
Comment 1 Adam Roben (:aroben) 2011-02-25 09:32:46 PST
A little more detail:

The post-mortem debugger is controlled by some registry values in HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug. On 64-bit OSes, you can either set the values in that key, which will be used for 64-bit apps, or in the equivalent key under Wow6432Node, which will be used for 32-bit apps.
Comment 2 Adam Roben (:aroben) 2011-02-25 09:36:52 PST
Created attachment 83825 [details]
Set the 32-bit post-mortem debugger on 64-bit OSes
Comment 3 Adam Roben (:aroben) 2011-02-25 10:49:49 PST
Committed r79697: <http://trac.webkit.org/changeset/79697>