Commit 66b10849 authored by finnur's avatar finnur Committed by Commit bot

Disable failing test AudioRecorderTest.BasicRecordAndStop because of Mac failures.

BUG=463854
NOTRY=true
TBR=rkc

Review URL: https://codereview.chromium.org/971613003

Cr-Commit-Position: refs/heads/master@{#319053}
parent 96514cb9
......@@ -196,7 +196,15 @@ class AudioRecorderTest : public testing::Test {
content::TestBrowserThreadBundle thread_bundle_;
};
TEST_F(AudioRecorderTest, BasicRecordAndStop) {
// http://crbug.com/463854
#if defined(OS_MACOSX)
#define MAYBE_BasicRecordAndStop DISABLED_BasicRecordAndStop
#else
#define MAYBE_BasicRecordAndStop BasicRecordAndStop
#endif
TEST_F(AudioRecorderTest, MAYBE_BasicRecordAndStop) {
CreateSimpleRecorder();
recorder_->Record();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment