mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-25 00:35:04 +01:00
Fix README.ANDROID + formatting
This patch updates README.ANDROID, since the client library now supports directly generating a minidump without raising a signal, and that it builds and runs fine on Android/x86. + Formatting fixes in minidump_writer_unittest.cc Review URL: https://breakpad.appspot.com/446002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1026 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
343ce73b73
commit
f792eecd1e
2 changed files with 4 additions and 9 deletions
|
|
@ -329,8 +329,8 @@ TEST(MinidumpWriterTest, DeletedBinary) {
|
|||
// Copy binary to a temp file.
|
||||
AutoTempDir temp_dir;
|
||||
string binpath = temp_dir.path() + "/linux-dumper-unittest-helper";
|
||||
ASSERT_EQ(true, CopyFile(helper_path.c_str(), binpath.c_str())) \
|
||||
<< "Failed to copy " << helper_path << " to " << binpath;
|
||||
ASSERT_TRUE(CopyFile(helper_path.c_str(), binpath.c_str()))
|
||||
<< "Failed to copy " << helper_path << " to " << binpath;
|
||||
ASSERT_EQ(0, chmod(binpath.c_str(), 0755));
|
||||
|
||||
int fds[2];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue