Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3969)

Issue 399002: The end goal of this change is to boost the test coverage of breakpad in Google (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 10 months ago by ivanpe.google
Modified:
11 years, 9 months ago
CC:
google-breakpad-dev_googlegroups.com, crash-team_google.com
Base URL:
http://google-breakpad.googlecode.com/svn/trunk/src/
Visibility:
Public.

Description

Fixing various compiler warnings and applying minor tweaks to allow running of
the mojority of breakpad unittests in Google.

Patch Set 1 #

Patch Set 2 : Fixing a couple of issues detected by lint #

Total comments: 19

Patch Set 3 : Moving std::string related changes to a different code review #

Patch Set 4 : Need to also include the Makefile changes #

Patch Set 5 : Integration with a previous change. Now, that I can, I'm getting rid of std::string usage in two o… #

Total comments: 18

Patch Set 6 : Incorporating changes from code review. #

Total comments: 4

Patch Set 7 : Fixing a comment duplication and reverting a scoped_array usage #

Unified diffs Side-by-side diffs Delta from patch set Stats Patch
M Makefile.am View 1 2 3 4 5 2 chunks +11 lines, -0 lines 0 comments Download
M Makefile.in View 1 2 3 4 5 8 chunks +31 lines, -0 lines 0 comments Download
M configure View 1 2 3 4 5 3 chunks +14 lines, -0 lines 0 comments Download
M configure.ac View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M src/client/linux/minidump_writer/linux_core_dumper_unittest.cc View 1 2 3 4 5 1 chunk +1 line, -2 lines 0 comments Download
M src/client/linux/minidump_writer/linux_dumper_unittest_helper.cc View 1 2 3 4 5 2 chunks +2 lines, -1 line 0 comments Download
M src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc View 1 2 3 4 5 4 chunks +5 lines, -18 lines 0 comments Download
M src/client/linux/minidump_writer/minidump_writer_unittest.cc View 1 2 3 4 5 11 chunks +18 lines, -24 lines 0 comments Download
A src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc View 1 2 3 4 6 1 chunk +66 lines, -0 lines 0 comments Download
A src/client/linux/minidump_writer/minidump_writer_unittest_utils.h View 1 2 3 4 5 1 chunk +49 lines, -0 lines 0 comments Download
M src/common/basictypes.h View 1 2 3 4 5 1 chunk +2 lines, -0 lines 0 comments Download
M src/common/language.h View 1 2 3 4 5 1 chunk +4 lines, -0 lines 0 comments Download
M src/common/linux/elf_core_dump_unittest.cc View 1 2 3 4 5 4 chunks +6 lines, -4 lines 0 comments Download
M src/common/linux/file_id_unittest.cc View 1 2 3 4 5 6 1 chunk +4 lines, -2 lines 0 comments Download
M src/common/linux/linux_libc_support_unittest.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M src/common/memory_unittest.cc View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M src/common/test_assembler.h View 1 2 3 4 5 1 chunk +4 lines, -1 line 0 comments Download
M src/processor/synth_minidump_unittest.cc View 1 2 3 4 5 2 chunks +6 lines, -6 lines 0 comments Download
M src/processor/synth_minidump_unittest_data.h View 1 2 3 4 5 2 chunks +62 lines, -56 lines 0 comments Download
M src/tools/linux/md2core/minidump-2-core.cc View 1 2 3 4 5 2 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 11
ivanpe.google
The main goal of this change is to allow the compilation and execution of most ...
11 years, 10 months ago #1
Mark Mentovai
I’ve only looked at the first few files. Can you split out the mechanical std::string ...
11 years, 10 months ago #2
Ted Mielczarek
On Mon, Jun 18, 2012 at 10:15 PM, <ivanpe@google.com> wrote: > Reviewers: Mark Mentovai, Ted ...
11 years, 10 months ago #3
Mark Mentovai
Google has a funny internal string class that uses the same interface as std::string but ...
11 years, 10 months ago #4
Ted Mielczarek
On Tue, Jun 19, 2012 at 11:48 AM, <mark@chromium.org> wrote: > Google has a funny ...
11 years, 10 months ago #5
ivanpe.google
Hi Ted, The rest of the changes fall into two main categories: - Compiler warnings ...
11 years, 9 months ago #6
Mark Mentovai
http://breakpad.appspot.com/399002/diff/10018/src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc File src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc (right): http://breakpad.appspot.com/399002/diff/10018/src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc#newcode123 src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc:123: ASSERT_NE(-1, fd) << "Failed to open file: " << ...
11 years, 9 months ago #7
ivanpe.google
Everything is fixed. Thanks, -Ivan http://breakpad.appspot.com/399002/diff/10018/src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc File src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc (right): http://breakpad.appspot.com/399002/diff/10018/src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc#newcode123 src/client/linux/minidump_writer/linux_ptrace_dumper_unittest.cc:123: ASSERT_NE(-1, fd) << "Failed ...
11 years, 9 months ago #8
Mark Mentovai
http://breakpad.appspot.com/399002/diff/24002/src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc File src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc (right): http://breakpad.appspot.com/399002/diff/24002/src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc#newcode42 src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc:42: // Returns the full path to linux_dumper_unittest_helper. The full ...
11 years, 9 months ago #9
ivanpe.google
Fixed. Thanks, -Ivan http://breakpad.appspot.com/399002/diff/24002/src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc File src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc (right): http://breakpad.appspot.com/399002/diff/24002/src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc#newcode42 src/client/linux/minidump_writer/minidump_writer_unittest_utils.cc:42: // Returns the full path to ...
11 years, 9 months ago #10
Mark Mentovai
11 years, 9 months ago #11
LGTM
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted