diff options
author | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 01:43:04 +0000 |
---|---|---|
committer | cpu@chromium.org <cpu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-23 01:43:04 +0000 |
commit | 28de7d94b52d84165475ca2b6d98d556b0feaffb (patch) | |
tree | 5d986190ce73e6408debcc08465a83c5354788f0 /chrome/browser/sanity_uitest.cc | |
parent | 9d391c62e127172e069f17619a7e9b07328fae56 (diff) | |
download | chromium_src-28de7d94b52d84165475ca2b6d98d556b0feaffb.zip chromium_src-28de7d94b52d84165475ca2b6d98d556b0feaffb.tar.gz chromium_src-28de7d94b52d84165475ca2b6d98d556b0feaffb.tar.bz2 |
Fix for crash on early return from browser_main.cc
BrowserImpl dtor assumes full construction of all sub-objects, this is not true
at least in one case (the try chrome again toast). See bug for more details
- Added a UI test to detect these shenaningans in all platforms
- had to hack ui_tests a bit, I hope is palatable
BUG=34799
TEST= UI test included
Review URL: http://codereview.chromium.org/571017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39690 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sanity_uitest.cc')
-rw-r--r-- | chrome/browser/sanity_uitest.cc | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/chrome/browser/sanity_uitest.cc b/chrome/browser/sanity_uitest.cc index 2eaded0..ab347bb 100644 --- a/chrome/browser/sanity_uitest.cc +++ b/chrome/browser/sanity_uitest.cc @@ -10,6 +10,7 @@ #include "base/basictypes.h" #include "base/file_path.h" #include "base/platform_thread.h" +#include "chrome/common/chrome_switches.h" class GoogleTest : public UITest { protected: @@ -45,5 +46,24 @@ TEST_F(ColumnLayout, Crash) { // Make sure the navigation succeeded. EXPECT_EQ(page_title, GetActiveTabTitle()); - // UIText will check if this crashed. + // UITest will check if this crashed. +} + +// By passing kTryChromeAgain with a magic value > 10000 we cause chrome +// to exit fairly early. This was the cause of crashes. See bug 34799. +class EarlyReturnTest : public UITest { + public: + EarlyReturnTest() { + wait_for_initial_loads_ = false; + // We don't depend on these timeouts, they are set to the minimum so + // the automation server waits the minimun amount possible for the + // handshake that will never come. + set_command_execution_timeout_ms(1); + set_action_timeout_ms(1); + launch_arguments_.AppendSwitchWithValue(switches::kTryChromeAgain, "10001"); + } +}; + +TEST_F(EarlyReturnTest, ToastCrasher) { + // UITest will check if this crashed. } |