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

Unified Diff: webkit/fileapi/obfuscated_file_system_file_util_unittest.cc

Issue 6966044: Remove ctime and atime checks to reduce flakiness. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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: webkit/fileapi/obfuscated_file_system_file_util_unittest.cc
diff --git a/webkit/fileapi/obfuscated_file_system_file_util_unittest.cc b/webkit/fileapi/obfuscated_file_system_file_util_unittest.cc
index 2fbd10e554264a9421fc76780e347c47cbf6bc18..900002818f5566793ee8908e4521de32c6accc74 100644
--- a/webkit/fileapi/obfuscated_file_system_file_util_unittest.cc
+++ b/webkit/fileapi/obfuscated_file_system_file_util_unittest.cc
@@ -208,9 +208,7 @@ class ObfuscatedFileSystemFileUtilTest : public testing::Test {
EXPECT_FALSE(file_info1.is_symbolic_link);
EXPECT_EQ(0, file_info0.size);
EXPECT_EQ(length, file_info1.size);
- EXPECT_LE(file_info0.last_accessed, file_info1.last_accessed);
EXPECT_LE(file_info0.last_modified, file_info1.last_modified);
- EXPECT_EQ(file_info0.creation_time, file_info1.creation_time);
context.reset(NewContext());
EXPECT_EQ(base::PLATFORM_FILE_OK, ofsfu()->Truncate(
@@ -730,7 +728,6 @@ TEST_F(ObfuscatedFileSystemFileUtilTest, TestCopyOrMoveFileSuccess) {
ASSERT_EQ(base::PLATFORM_FILE_OK, ofsfu()->CreateDirectory(
context.get(), dest_path.DirName(), exclusive, recursive));
- base::Time last_access_time;
bool created = false;
context.reset(NewContext());
ASSERT_EQ(base::PLATFORM_FILE_OK,
« 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