Skip to content

Commit

Permalink
Disable WebRtcBrowserTest.CanMakeVideoCallAndThenRenegotiateToAudio t…
Browse files Browse the repository at this point in the history
…est on tsan bot that is failing due to circular lock

BUG=457061
TBR=guoweis@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#315477}
  • Loading branch information
mitoshima authored and Commit bot committed Feb 10, 2015
1 parent d129b92 commit c92f6d6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion content/browser/media/webrtc_browsertest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,15 @@ IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcBrowserTest,
MakeTypicalPeerConnectionCall(kJavascript);
}

// Circular lock: crbug.com/457061
#if defined(THREAD_SANITIZER)
#define MAYBE_CanMakeAudioCallAndThenRenegotiateToVideo DISABLED_CanMakeAudioCallAndThenRenegotiateToVideo
#else
#define MAYBE_CanMakeAudioCallAndThenRenegotiateToVideo CanMakeAudioCallAndThenRenegotiateToVideo
#endif

IN_PROC_BROWSER_TEST_F(MAYBE_WebRtcBrowserTest,
CanMakeAudioCallAndThenRenegotiateToVideo) {
MAYBE_CanMakeAudioCallAndThenRenegotiateToVideo) {
const char* kJavascript =
"callAndRenegotiateToVideo({audio: true}, {audio: true, video:true});";
MakeTypicalPeerConnectionCall(kJavascript);
Expand Down

0 comments on commit c92f6d6

Please sign in to comment.