Commit a031eaad authored by earthdok's avatar earthdok Committed by Commit bot

Disable two failing WebRtcBrowserTest tests under MSan.

BUG=405951
TBR=lally@chromium.org
NOTRY=true

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

Cr-Commit-Position: refs/heads/master@{#292371}
parent e120a88b
...@@ -314,7 +314,13 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, CallWithDataOnly) { ...@@ -314,7 +314,13 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, CallWithDataOnly) {
MakeTypicalPeerConnectionCall("callWithDataOnly();"); MakeTypicalPeerConnectionCall("callWithDataOnly();");
} }
IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, CallWithSctpDataOnly) { #if defined(MEMORY_SANITIZER)
// Fails under MemorySanitizer: http://crbug.com/405951
#define MAYBE_CallWithSctpDataOnly DISABLED_CallWithSctpDataOnly
#else
#define MAYBE_CallWithSctpDataOnly CallWithSctpDataOnly
#endif
IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, MAYBE_CallWithSctpDataOnly) {
MakeTypicalPeerConnectionCall("callWithSctpDataOnly();"); MakeTypicalPeerConnectionCall("callWithSctpDataOnly();");
} }
...@@ -333,8 +339,10 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, DISABLED_CallWithDataAndMedia) { ...@@ -333,8 +339,10 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, DISABLED_CallWithDataAndMedia) {
} }
#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY) #if (defined(OS_LINUX) && !defined(OS_CHROMEOS) && \
defined(ARCH_CPU_ARM_FAMILY)) || defined(MEMORY_SANITIZER)
// Timing out on ARM linux bot: http://crbug.com/238490 // Timing out on ARM linux bot: http://crbug.com/238490
// Fails under MemorySanitizer: http://crbug.com/405951
#define MAYBE_CallWithSctpDataAndMedia DISABLED_CallWithSctpDataAndMedia #define MAYBE_CallWithSctpDataAndMedia DISABLED_CallWithSctpDataAndMedia
#else #else
#define MAYBE_CallWithSctpDataAndMedia CallWithSctpDataAndMedia #define MAYBE_CallWithSctpDataAndMedia CallWithSctpDataAndMedia
......
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