Index: base/path_service_unittest.cc |
diff --git a/base/path_service_unittest.cc b/base/path_service_unittest.cc |
index 26998de5c097ceaccf95e83f0cac54056c0a0255..e30b3c6714c51a9aeebb4e3666e1515065d59d1e 100644 |
--- a/base/path_service_unittest.cc |
+++ b/base/path_service_unittest.cc |
@@ -51,6 +51,10 @@ typedef PlatformTest PathServiceTest; |
// correct value while returning false.) |
TEST_F(PathServiceTest, Get) { |
for (int key = base::DIR_CURRENT; key < base::PATH_END; ++key) { |
+#if defined(OS_ANDROID) |
+ if (key == base::FILE_MODULE) |
+ continue; // Android doesn't implement FILE_MODULE; |
+#endif |
EXPECT_PRED1(ReturnsValidPath, key); |
} |
#if defined(OS_WIN) |