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

Unified Diff: chrome/browser/media/encrypted_media_browsertest.cc

Issue 180733004: Disable failing tests for WV key system running with test license server. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 10 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 | chrome/browser/media/wv_test_license_server_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/encrypted_media_browsertest.cc
diff --git a/chrome/browser/media/encrypted_media_browsertest.cc b/chrome/browser/media/encrypted_media_browsertest.cc
index a28267183cb86d25da930a0b904642afaf52ec98..ef44f3976d9d30b5084e4586a18018ca156b7158 100644
--- a/chrome/browser/media/encrypted_media_browsertest.cc
+++ b/chrome/browser/media/encrypted_media_browsertest.cc
@@ -414,10 +414,22 @@ INSTANTIATE_TEST_CASE_P(MSE_Widevine, EncryptedMediaTest,
#endif // defined(WIDEVINE_CDM_AVAILABLE)
IN_PROC_BROWSER_TEST_P(EncryptedMediaTest, Playback_AudioOnly_WebM) {
+#if defined(WIDEVINE_CDM_AVAILABLE)
+ if (IsWidevine(CurrentKeySystem())) {
+ VLOG(0) << "Test disabled on Widevine key system, crbug.com/349526.";
+ return;
+ }
+#endif
TestSimplePlayback("bear-a-enc_a.webm", kWebMAudioOnly);
}
IN_PROC_BROWSER_TEST_P(EncryptedMediaTest, Playback_AudioClearVideo_WebM) {
+#if defined(WIDEVINE_CDM_AVAILABLE)
+ if (IsWidevine(CurrentKeySystem())) {
+ VLOG(0) << "Test disabled on Widevine key system, crbug.com/349526.";
+ return;
+ }
+#endif
TestSimplePlayback("bear-320x240-av-enc_a.webm", kWebMAudioVideo);
}
« no previous file with comments | « no previous file | chrome/browser/media/wv_test_license_server_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698