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

Unified Diff: webkit/fileapi/file_system_mount_point_provider_unittest.cc

Issue 9109036: Mark some FileSystemMountPointProviderTest tests as FAILS_ on ChromeOS. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 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/file_system_mount_point_provider_unittest.cc
===================================================================
--- webkit/fileapi/file_system_mount_point_provider_unittest.cc (revision 116529)
+++ webkit/fileapi/file_system_mount_point_provider_unittest.cc (working copy)
@@ -361,7 +361,13 @@
EXPECT_EQ(root_path1.value(), root_path2.value());
}
-TEST_F(FileSystemMountPointProviderTest, GetRootPathGetWithoutCreate) {
+// http://crbug.com/109342
+#if defined(OS_CHROMEOS)
+#define MAYBE_GetRootPathGetWithoutCreate FAILS_GetRootPathGetWithoutCreate
+#else
+#define MAYBE_GetRootPathGetWithoutCreate GetRootPathGetWithoutCreate
+#endif
+TEST_F(FileSystemMountPointProviderTest, MAYBE_GetRootPathGetWithoutCreate) {
SetupNewContext(CreateDisallowFileAccessOptions());
// Try to get a root directory without creating.
@@ -374,7 +380,13 @@
}
}
-TEST_F(FileSystemMountPointProviderTest, GetRootPathInIncognito) {
+// http://crbug.com/109342
+#if defined(OS_CHROMEOS)
+#define MAYBE_GetRootPathInIncognito FAILS_GetRootPathInIncognito
+#else
+#define MAYBE_GetRootPathInIncognito GetRootPathInIncognito
+#endif
+TEST_F(FileSystemMountPointProviderTest, MAYBE_GetRootPathInIncognito) {
SetupNewContext(CreateIncognitoFileSystemOptions());
// Try to get a root directory.
@@ -387,7 +399,13 @@
}
}
-TEST_F(FileSystemMountPointProviderTest, GetRootPathFileURI) {
+// http://crbug.com/109342
+#if defined(OS_CHROMEOS)
+#define MAYBE_GetRootPathFileURI FAILS_GetRootPathFileURI
+#else
+#define MAYBE_GetRootPathFileURI GetRootPathFileURI
+#endif
+TEST_F(FileSystemMountPointProviderTest, MAYBE_GetRootPathFileURI) {
SetupNewContext(CreateDisallowFileAccessOptions());
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kRootPathFileURITestCases); ++i) {
SCOPED_TRACE(testing::Message() << "RootPathFileURI (disallow) #"
@@ -398,7 +416,15 @@
}
}
-TEST_F(FileSystemMountPointProviderTest, GetRootPathFileURIWithAllowFlag) {
+// http://crbug.com/109342
+#if defined(OS_CHROMEOS)
+#define MAYBE_GetRootPathFileURIWithAllowFlag \
+ FAILS_GetRootPathFileURIWithAllowFlag
+#else
+#define MAYBE_GetRootPathFileURIWithAllowFlag GetRootPathFileURIWithAllowFlag
+#endif
+TEST_F(FileSystemMountPointProviderTest,
+ MAYBE_GetRootPathFileURIWithAllowFlag) {
SetupNewContext(CreateRootPathTestOptions());
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kRootPathFileURITestCases); ++i) {
SCOPED_TRACE(testing::Message() << "RootPathFileURI (allow) #"
« 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