diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/zip_unittest.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/common/zip_unittest.cc b/chrome/common/zip_unittest.cc index 17ab1fa..67dd487 100644 --- a/chrome/common/zip_unittest.cc +++ b/chrome/common/zip_unittest.cc @@ -75,7 +75,9 @@ class ZipTest : public PlatformTest { // hard-coded contents of a known zip file std::set<FilePath> zip_contents_; }; - +// TODO(aa): re-enable this test for Mac (was disabled temporarily to clear +// valgrind error on mac. +#if !defined(OS_MACOSX) TEST_F(ZipTest, Unzip) { TestUnzipFile(FILE_PATH_LITERAL("test.zip")); } @@ -101,5 +103,5 @@ TEST_F(ZipTest, Zip) { EXPECT_TRUE(file_util::Delete(zip_file, false)); } - +#endif // !defined(OS_MACOSX) } // namespace |