summaryrefslogtreecommitdiffstats
path: root/chrome/tools
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-31 20:55:00 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-31 20:55:00 +0000
commitce5c3a8d14e6a4422eff08637e8f313491468e3e (patch)
tree66cbad73509c3b5e5fb27d5beb4fd3f3ee15b353 /chrome/tools
parent25aa7f9d94b64febe795f1fe88d8bd3ce2bd36bc (diff)
downloadchromium_src-ce5c3a8d14e6a4422eff08637e8f313491468e3e.zip
chromium_src-ce5c3a8d14e6a4422eff08637e8f313491468e3e.tar.gz
chromium_src-ce5c3a8d14e6a4422eff08637e8f313491468e3e.tar.bz2
Linux Reliability Bot: set the correct name for 64-bit Breakpad symbol files.
BUG=none TEST=none Review URL: http://codereview.chromium.org/3236007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58066 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rwxr-xr-xchrome/tools/process_dumps_linux.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/tools/process_dumps_linux.py b/chrome/tools/process_dumps_linux.py
index 299c9e7..728c640 100755
--- a/chrome/tools/process_dumps_linux.py
+++ b/chrome/tools/process_dumps_linux.py
@@ -207,7 +207,7 @@ def main_linux(options, args):
if bits == 32:
symbol_file = 'chrome.breakpad.ia32'
elif bits == 64:
- symbol_file = 'chrome.breakpad.ia64'
+ symbol_file = 'chrome.breakpad.x64'
else:
print 'Unknown architecture'
return 1