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

Side by Side Diff: base/files/dir_reader_posix_unittest.cc

Issue 1549853002: Switch to standard integer types in base/files/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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
« no previous file with comments | « base/files/dir_reader_linux.h ('k') | base/files/file.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/files/dir_reader_posix.h" 5 #include "base/files/dir_reader_posix.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 #include <stdio.h> 8 #include <stdio.h>
9 #include <stdlib.h> 9 #include <stdlib.h>
10 #include <string.h> 10 #include <string.h>
11 #include <unistd.h> 11 #include <unistd.h>
12 12
13 #include "base/files/scoped_temp_dir.h" 13 #include "base/files/scoped_temp_dir.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "build/build_config.h"
15 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
16 17
17 #if defined(OS_ANDROID) 18 #if defined(OS_ANDROID)
18 #include "base/os_compat_android.h" 19 #include "base/os_compat_android.h"
19 #endif 20 #endif
20 21
21 namespace base { 22 namespace base {
22 23
23 TEST(DirReaderPosixUnittest, Read) { 24 TEST(DirReaderPosixUnittest, Read) {
24 static const unsigned kNumFiles = 100; 25 static const unsigned kNumFiles = 100;
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 86
86 PCHECK(fchdir(prev_wd) == 0); 87 PCHECK(fchdir(prev_wd) == 0);
87 PCHECK(close(prev_wd) == 0); 88 PCHECK(close(prev_wd) == 0);
88 89
89 EXPECT_TRUE(seen_dot); 90 EXPECT_TRUE(seen_dot);
90 EXPECT_TRUE(seen_dotdot); 91 EXPECT_TRUE(seen_dotdot);
91 EXPECT_EQ(kNumFiles, seen.size()); 92 EXPECT_EQ(kNumFiles, seen.size());
92 } 93 }
93 94
94 } // namespace base 95 } // namespace base
OLDNEW
« no previous file with comments | « base/files/dir_reader_linux.h ('k') | base/files/file.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698