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

Side by Side Diff: sandbox/linux/tests/scoped_temporary_file.cc

Issue 348853006: Linux sandbox: add test to ensure that pread64 can be forwarded. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exclude Android from new test. Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "sandbox/linux/tests/scoped_temporary_file.h"
6
7 #include <stdlib.h>
8 #include <unistd.h>
9
10 #include "base/logging.h"
11 #include "base/macros.h"
12 #include "base/posix/eintr_wrapper.h"
13 #include "build/build_config.h"
14
15 namespace sandbox {
16
17 ScopedTemporaryFile::ScopedTemporaryFile() : fd_(-1) {
18 #if defined(OS_ANDROID)
19 static const char file_template[] = "/data/local/tmp/ScopedTempFileXXXXXX";
20 #else
21 static const char file_template[] = "/tmp/ScopedTempFileXXXXXX";
22 #endif // defined(OS_ANDROID)
23 COMPILE_ASSERT(sizeof(full_file_name_) >= sizeof(file_template),
24 full_file_name_is_large_enough);
25 memcpy(full_file_name_, file_template, sizeof(file_template));
26 fd_ = mkstemp(full_file_name_);
27 CHECK_LE(0, fd_);
28 }
29
30 ScopedTemporaryFile::~ScopedTemporaryFile() {
31 CHECK_EQ(0, unlink(full_file_name_));
32 CHECK_EQ(0, IGNORE_EINTR(close(fd_)));
33 }
34
35 } // namespace sandbox
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698