diff options
author | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-01 01:38:26 +0000 |
---|---|---|
committer | nirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-01 01:38:26 +0000 |
commit | d925e1847adea54d20f176585a82d3c62803583f (patch) | |
tree | 9483ef35b3b9d5d4149739d3903b47d8436c3c2b /chrome/test/reliability | |
parent | 34a13771f838f5f658af6e02cb5580b6afc55e9a (diff) | |
download | chromium_src-d925e1847adea54d20f176585a82d3c62803583f.zip chromium_src-d925e1847adea54d20f176585a82d3c62803583f.tar.gz chromium_src-d925e1847adea54d20f176585a82d3c62803583f.tar.bz2 |
Temporarily disable accessing prefs store in reliability_tests
This is so that we can see if the slowdown problem due to accessing the prefs
store on mac chromebot can be replicated on win chromebot as well.
Merge remote branch 'refs/remotes/origin/HEAD' into crbot
mac chromebot fast fix
Review URL: http://codereview.chromium.org/2843038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51329 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/reliability')
-rw-r--r-- | chrome/test/reliability/page_load_test.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/test/reliability/page_load_test.cc b/chrome/test/reliability/page_load_test.cc index 4d6f6ef..5b5ec8d 100644 --- a/chrome/test/reliability/page_load_test.cc +++ b/chrome/test/reliability/page_load_test.cc @@ -527,6 +527,11 @@ class PageLoadTest : public UITest { PrefService* GetLocalState() { FilePath local_state_path = user_data_dir() .Append(chrome::kLocalStateFilename); + // Accessing the prefs store blocks on mac after every ~30 runs. + // Temporarily bail out so that we can see if this causes slowdown on + // win chromebot as well. + // TODO(nirnimesh): remove this when we reach a conclusion. + return NULL; // Bail out PrefService* local_state(new PrefService(new PrefValueStore( NULL, /* no managed preference values */ |