diff options
author | brg@chromium.com <brg@chromium.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 19:34:53 +0000 |
---|---|---|
committer | brg@chromium.com <brg@chromium.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-12 19:34:53 +0000 |
commit | e2b56436aa3784f9a1bdf506b1430f68f2ec49eb (patch) | |
tree | 370e9e0addfbfed0dd33861d7b063d067ba8eeaf | |
parent | eda2b5a29df212809fb3ee5a8e8c42017b635f1c (diff) | |
download | chromium_src-e2b56436aa3784f9a1bdf506b1430f68f2ec49eb.zip chromium_src-e2b56436aa3784f9a1bdf506b1430f68f2ec49eb.tar.gz chromium_src-e2b56436aa3784f9a1bdf506b1430f68f2ec49eb.tar.bz2 |
Re-enable test after fix for valgrind/purify error.
The fix was submitted in issue 79049.
http://crbug.com/10679
Review URL: http://codereview.chromium.org/115202
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15889 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/importer/toolbar_importer.h | 2 | ||||
-rw-r--r-- | chrome/browser/importer/toolbar_importer_unittest.cc | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/importer/toolbar_importer.h b/chrome/browser/importer/toolbar_importer.h index a291476..24b5b28 100644 --- a/chrome/browser/importer/toolbar_importer.h +++ b/chrome/browser/importer/toolbar_importer.h @@ -58,7 +58,7 @@ class Toolbar5Importer : public URLFetcher::Delegate, public Importer { const std::string& data); private: - FRIEND_TEST(Toolbar5ImporterTest, DISABLED_BookmarkParse); + FRIEND_TEST(Toolbar5ImporterTest, BookmarkParse); // Internal states of the toolbar importer. enum InternalStateEnum { diff --git a/chrome/browser/importer/toolbar_importer_unittest.cc b/chrome/browser/importer/toolbar_importer_unittest.cc index ab2b46d..1d4a2ac 100644 --- a/chrome/browser/importer/toolbar_importer_unittest.cc +++ b/chrome/browser/importer/toolbar_importer_unittest.cc @@ -309,8 +309,7 @@ static const char* kBadBookmarkNoLabels = // The parsing tests for Toolbar5Importer use the string above. For a // description of all the tests run please see the comments immediately before // the string constants above. -// Failing Valgrind/Purify, refer to http://crbug.com/10679 -TEST(Toolbar5ImporterTest, DISABLED_BookmarkParse) { +TEST(Toolbar5ImporterTest, BookmarkParse) { XmlReader reader; std::string bookmark_xml; std::vector<ProfileWriter::BookmarkEntry> bookmarks; |