Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(855)

Unified Diff: content/browser/media/webrtc_browsertest.cc

Issue 23513014: Worked around bug with gtest filters on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/webrtc_browsertest.cc
diff --git a/content/browser/media/webrtc_browsertest.cc b/content/browser/media/webrtc_browsertest.cc
index db7d86e703cc94a30670faf19c67db7199a4f2df..db026c246d73b7ea6827224778fa90a074f9d439 100644
--- a/content/browser/media/webrtc_browsertest.cc
+++ b/content/browser/media/webrtc_browsertest.cc
@@ -48,6 +48,13 @@ namespace content {
#if defined(OS_LINUX)
// All tests are flaky on Linux: crbug.com/281492.
#define MAYBE_WebrtcBrowserTest DISABLED_WebrtcBrowserTest
+
+// Workaround for crbug.com/285051. This can safely be removed if any of the
+// cases selected by --gtest_filter=WebRTC*:Webrtc*:*Dtmf get re-enabled.
+class WebrtcWorkaroundBugWithEmptyFilter: public ContentBrowserTest {};
tommi (sloooow) - chröme 2013/09/04 10:26:30 space before :
+IN_PROC_BROWSER_TEST_F(WebrtcWorkaroundBugWithEmptyFilter, Succeeds) {
+ ASSERT_TRUE(true);
+}
#else
#define MAYBE_WebrtcBrowserTest WebrtcBrowserTest
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698