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

Side by Side Diff: base/platform_file_unittest.cc

Issue 13818027: posix: replace nonstandard futimes call with futimens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change Time::ToTimeVal to Time::ToTimeSpec Created 7 years, 8 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
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/file_util.h" 5 #include "base/file_util.h"
6 #include "base/files/scoped_temp_dir.h" 6 #include "base/files/scoped_temp_dir.h"
7 #include "base/platform_file.h" 7 #include "base/platform_file.h"
8 #include "base/time.h" 8 #include "base/time.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 new_last_modified)); 307 new_last_modified));
308 308
309 // Make sure the file info was updated accordingly. 309 // Make sure the file info was updated accordingly.
310 EXPECT_TRUE(base::GetPlatformFileInfo(file, &info)); 310 EXPECT_TRUE(base::GetPlatformFileInfo(file, &info));
311 EXPECT_EQ(info.size, kTestDataSize); 311 EXPECT_EQ(info.size, kTestDataSize);
312 EXPECT_FALSE(info.is_directory); 312 EXPECT_FALSE(info.is_directory);
313 EXPECT_FALSE(info.is_symbolic_link); 313 EXPECT_FALSE(info.is_symbolic_link);
314 314
315 // ext2/ext3 and HPS/HPS+ seem to have a timestamp granularity of 1s. 315 // ext2/ext3 and HPS/HPS+ seem to have a timestamp granularity of 1s.
316 #if defined(OS_POSIX) 316 #if defined(OS_POSIX)
317 EXPECT_EQ(info.last_accessed.ToTimeVal().tv_sec, 317 EXPECT_EQ(info.last_accessed.ToTimeSpec().tv_sec,
318 new_last_accessed.ToTimeVal().tv_sec); 318 new_last_accessed.ToTimeSpec().tv_sec);
319 EXPECT_EQ(info.last_modified.ToTimeVal().tv_sec, 319 EXPECT_EQ(info.last_modified.ToTimeSpec().tv_sec,
320 new_last_modified.ToTimeVal().tv_sec); 320 new_last_modified.ToTimeSpec().tv_sec);
321 #else 321 #else
322 EXPECT_EQ(info.last_accessed.ToInternalValue(), 322 EXPECT_EQ(info.last_accessed.ToInternalValue(),
323 new_last_accessed.ToInternalValue()); 323 new_last_accessed.ToInternalValue());
324 EXPECT_EQ(info.last_modified.ToInternalValue(), 324 EXPECT_EQ(info.last_modified.ToInternalValue(),
325 new_last_modified.ToInternalValue()); 325 new_last_modified.ToInternalValue());
326 #endif 326 #endif
327 327
328 EXPECT_EQ(info.creation_time.ToInternalValue(), 328 EXPECT_EQ(info.creation_time.ToInternalValue(),
329 creation_time.ToInternalValue()); 329 creation_time.ToInternalValue());
330 330
331 // Close the file handle to allow the temp directory to be deleted. 331 // Close the file handle to allow the temp directory to be deleted.
332 base::ClosePlatformFile(file); 332 base::ClosePlatformFile(file);
333 } 333 }
OLDNEW
« no previous file with comments | « base/platform_file_posix.cc ('k') | base/time.h » ('j') | base/time.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698