diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 20:36:43 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 20:36:43 +0000 |
commit | 9a33920b5720809dcd45e551319695981f98eb9b (patch) | |
tree | aebade063cb9cd5bd9e5aa98e9cd286028344b90 /chrome/browser/browser_uitest.cc | |
parent | ed3456f80512a28e4e0d9b8e931a1813db33a880 (diff) | |
download | chromium_src-9a33920b5720809dcd45e551319695981f98eb9b.zip chromium_src-9a33920b5720809dcd45e551319695981f98eb9b.tar.gz chromium_src-9a33920b5720809dcd45e551319695981f98eb9b.tar.bz2 |
Fix BrowserTest.ThirtyFourTabs and possibly other ui tests in single-process mode. The problem was that RenderProcess was being destructed on both threads at the same time because of the scoped_ptr.
Review URL: http://codereview.chromium.org/27228
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_uitest.cc')
-rw-r--r-- | chrome/browser/browser_uitest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/browser_uitest.cc b/chrome/browser/browser_uitest.cc index 49524cb..c88f7d9 100644 --- a/chrome/browser/browser_uitest.cc +++ b/chrome/browser/browser_uitest.cc @@ -90,7 +90,7 @@ TEST_F(BrowserTest, Title) { // had a hard limit of 31 processes and this test is mainly directed at // verifying that we don't crash when we pass this limit. // Disabling this test http://code.google.com/p/chromium/issues/detail?id=8119 -TEST_F(BrowserTest, DISABLED_ThirtyFourTabs) { +TEST_F(BrowserTest, ThirtyFourTabs) { std::wstring test_file = test_data_directory_; file_util::AppendToPath(&test_file, L"title2.html"); GURL url(net::FilePathToFileURL(test_file)); |