Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: chrome/browser/chromeos/external_metrics_unittest.cc

Issue 660191: Fix compile error : " error: open with O_CREAT in second argument needs 3 arg... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/external_metrics_unittest.cc
===================================================================
--- chrome/browser/chromeos/external_metrics_unittest.cc (revision 40139)
+++ chrome/browser/chromeos/external_metrics_unittest.cc (working copy)
@@ -103,7 +103,7 @@
// Sends a malformed message (first string is not null-terminated).
i = 100 + sizeof(i);
- int fd = open(path, O_CREAT | O_WRONLY);
+ int fd = open(path, O_CREAT | O_WRONLY, 0666);
EXPECT_GT(fd, 0);
EXPECT_EQ(write(fd, &i, sizeof(i)), static_cast<int>(sizeof(i)));
EXPECT_EQ(write(fd, b, i), i);
@@ -114,7 +114,7 @@
// Sends a malformed message (second string is not null-terminated).
b[50] = '\0';
- fd = open(path, O_CREAT | O_WRONLY);
+ fd = open(path, O_CREAT | O_WRONLY, 0666);
EXPECT_GT(fd, 0);
EXPECT_EQ(write(fd, &i, sizeof(i)), static_cast<int>(sizeof(i)));
EXPECT_EQ(write(fd, b, i), i);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698