diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 07:36:18 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 07:36:18 +0000 |
commit | 80f217d451eedbffcab88bf4fa85fd0a85cf88d2 (patch) | |
tree | aa545d48766719e60b4721a1d7b1390c80252d6d | |
parent | c295d94025ee10f64cbf2d12ca29f4ae23f28e3e (diff) | |
download | chromium_src-80f217d451eedbffcab88bf4fa85fd0a85cf88d2.zip chromium_src-80f217d451eedbffcab88bf4fa85fd0a85cf88d2.tar.gz chromium_src-80f217d451eedbffcab88bf4fa85fd0a85cf88d2.tar.bz2 |
Temporarily disable DOM Storage tests since they are exposing
memory leaks in valgrind. DOM Storage is behind a flag, so
it's ok to hide the symptoms until the problem can be solved.
TBR=darin
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/159908
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22468 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/in_process_webkit/dom_storage_uitest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/in_process_webkit/dom_storage_uitest.cc b/chrome/browser/in_process_webkit/dom_storage_uitest.cc index 139640f..b9604d1 100644 --- a/chrome/browser/in_process_webkit/dom_storage_uitest.cc +++ b/chrome/browser/in_process_webkit/dom_storage_uitest.cc @@ -50,7 +50,7 @@ class DOMStorageTest : public UILayoutTest { FilePath test_dir_; }; -TEST_F(DOMStorageTest, DOMStorageLayoutTests) { +TEST_F(DOMStorageTest, DISABLED_DOMStorageLayoutTests) { // TODO(jorlow): Enable these tests when we remove them from the // test_exceptions.txt file. //InitializeForLayoutTest(test_dir_, FilePath(), false); @@ -58,14 +58,14 @@ TEST_F(DOMStorageTest, DOMStorageLayoutTests) { // RunLayoutTest(kTopLevelFiles[i], false, true); } -TEST_F(DOMStorageTest, LocalStorageLayoutTests) { +TEST_F(DOMStorageTest, DISABLED_LocalStorageLayoutTests) { InitializeForLayoutTest(test_dir_, FilePath().AppendASCII("localstorage"), false); for (size_t i=0; i<arraysize(kSubDirFiles); ++i) RunLayoutTest(kSubDirFiles[i], false); } -TEST_F(DOMStorageTest, SessionStorageLayoutTests) { +TEST_F(DOMStorageTest, DISABLED_SessionStorageLayoutTests) { InitializeForLayoutTest(test_dir_, FilePath().AppendASCII("sessionstorage"), false); for (size_t i=0; i<arraysize(kSubDirFiles); ++i) |