diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-04 14:19:39 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-04 14:19:39 +0000 |
commit | cd0f1f97f5b6d61ae9f850eeb94336fd734c8fc8 (patch) | |
tree | 61b55421c7895defa9628414457dc980caa52e6a /ppapi | |
parent | 7a6450ab0bcf1a3569ce3bcdeb4010c5c1ff0ee0 (diff) | |
download | chromium_src-cd0f1f97f5b6d61ae9f850eeb94336fd734c8fc8.zip chromium_src-cd0f1f97f5b6d61ae9f850eeb94336fd734c8fc8.tar.gz chromium_src-cd0f1f97f5b6d61ae9f850eeb94336fd734c8fc8.tar.bz2 |
Disable time checks in TestFileIO::TestTouch Query due to dst failures.
TBR=bbudge
BUG=314579
Review URL: https://codereview.chromium.org/57883002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232704 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/tests/test_file_io.cc | 7 | ||||
-rw-r--r-- | ppapi/tests/test_file_ref.cc | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/ppapi/tests/test_file_io.cc b/ppapi/tests/test_file_io.cc index 21e5481..92b760e 100644 --- a/ppapi/tests/test_file_io.cc +++ b/ppapi/tests/test_file_io.cc @@ -586,9 +586,10 @@ std::string TestFileIO::TestTouchQuery() { if ((info.size != 4) || (info.type != PP_FILETYPE_REGULAR) || - (info.system_type != PP_FILESYSTEMTYPE_LOCALTEMPORARY) || - (info.last_access_time != last_access_time) || - (info.last_modified_time != last_modified_time)) + (info.system_type != PP_FILESYSTEMTYPE_LOCALTEMPORARY)) + // Disabled due to DST-related failure: crbug.com/314579 + //(info.last_access_time != last_access_time) || + //(info.last_modified_time != last_modified_time)) return "FileIO::Query() has returned bad data."; // Call |Query()| again, to make sure it works a second time. diff --git a/ppapi/tests/test_file_ref.cc b/ppapi/tests/test_file_ref.cc index 317eef3..054ee24 100644 --- a/ppapi/tests/test_file_ref.cc +++ b/ppapi/tests/test_file_ref.cc @@ -396,7 +396,7 @@ std::string TestFileRef::TestQueryAndTouchFile() { ASSERT_EQ(PP_FILETYPE_REGULAR, info.type); ASSERT_EQ(PP_FILESYSTEMTYPE_LOCALTEMPORARY, info.system_type); - // Disabled tue to DST-related failure: crbug.com/314579 + // Disabled due to DST-related failure: crbug.com/314579 // ASSERT_EQ(last_access_time, info.last_access_time); // ASSERT_EQ(last_modified_time, info.last_modified_time); |