Skip to content

Commit

Permalink
Disable the newly added SpeechInputBrowserTest.TestCancelAll in offic…
Browse files Browse the repository at this point in the history
…ial release builds.

This is done because the test times out in the official builders, just like the other
SpeechInputBrowserTest.* tests.

BUG=71227
TEST=TestCancelAll should not be run in official builders.
TBR=bulach@chromium.org

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78827 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
satish@chromium.org committed Mar 19, 2011
1 parent 3bf6838 commit 2a589a6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion content/browser/speech/speech_input_browsertest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,13 @@ IN_PROC_BROWSER_TEST_F(SpeechInputBrowserTest, MAYBE_GrammarAttribute) {
fake_speech_input_manager_.grammar());
}

IN_PROC_BROWSER_TEST_F(SpeechInputBrowserTest, TestCancelAll) {
// Marked as DISABLED due to http://crbug.com/71227
#if defined(GOOGLE_CHROME_BUILD)
#define MAYBE_TestCancelAll DISABLED_TestCancelAll
#else
#define MAYBE_TestCancelAll TestCancelAll
#endif
IN_PROC_BROWSER_TEST_F(SpeechInputBrowserTest, MAYBE_TestCancelAll) {
// The test checks that the cancel-all callback gets issued when a session
// is pending, so don't send a fake response.
fake_speech_input_manager_.set_send_fake_response(false);
Expand Down

0 comments on commit 2a589a6

Please sign in to comment.