summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-05 21:08:11 +0000
committernsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-05 21:08:11 +0000
commit7d82559b918905e674ed018dab3fcb90de141d50 (patch)
treec5e8c5d76452e6b7f93a45e7b9c81b87cb3ab908
parent8f150d98bfa85dec03b6f69934316fe0b0164a52 (diff)
downloadchromium_src-7d82559b918905e674ed018dab3fcb90de141d50.zip
chromium_src-7d82559b918905e674ed018dab3fcb90de141d50.tar.gz
chromium_src-7d82559b918905e674ed018dab3fcb90de141d50.tar.bz2
Remove the BrowserCrashTest.Crash test from the code because it never
worked. I will make bug 3910 about creating such test. Review URL: http://codereview.chromium.org/243098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28042 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/common/logging_chrome_uitest.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/chrome/common/logging_chrome_uitest.cc b/chrome/common/logging_chrome_uitest.cc
index 0e023ae..3c5d078 100644
--- a/chrome/common/logging_chrome_uitest.cc
+++ b/chrome/common/logging_chrome_uitest.cc
@@ -116,23 +116,3 @@ TEST_F(RendererCrashTest, Crash) {
expected_crashes_ = 1;
}
}
-
-// Tests whether we correctly fail on browser crashes during UI Tests.
-class BrowserCrashTest : public UITest {
- protected:
- BrowserCrashTest() : UITest()
- {
- // Initial loads will never complete due to crash.
- wait_for_initial_loads_ = false;
-
- launch_arguments_.AppendSwitch(switches::kBrowserCrashTest);
- }
-};
-
-// Launch the app in browser crash test mode.
-// This test is disabled. See bug 6910.
-TEST_F(BrowserCrashTest, DISABLED_Crash) {
- // Wait while the process is writing the crash dump.
- PlatformThread::Sleep(5000);
- expected_crashes_ = 1;
-}