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

Side by Side Diff: chrome/browser/media/webrtc_perf_browsertest.cc

Issue 1817983002: Remove tests using the default codec (i.e. VP8) from chrome_webrtc_perf_browsertest.cc and chrome_w… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/media/webrtc_video_quality_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/files/file_util.h" 6 #include "base/files/file_util.h"
7 #include "base/json/json_reader.h" 7 #include "base/json/json_reader.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string_split.h" 10 #include "base/strings/string_split.h"
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 test::PrintBweForVideoMetrics(*second_pc_dict, "_recvonly", video_codec); 191 test::PrintBweForVideoMetrics(*second_pc_dict, "_recvonly", video_codec);
192 test::PrintMetricsForAllStreams(*second_pc_dict, "_recvonly", video_codec); 192 test::PrintMetricsForAllStreams(*second_pc_dict, "_recvonly", video_codec);
193 193
194 HangUp(left_tab); 194 HangUp(left_tab);
195 HangUp(right_tab); 195 HangUp(right_tab);
196 } 196 }
197 }; 197 };
198 198
199 // This is manual for its long execution time. 199 // This is manual for its long execution time.
200 200
201 // The video codec name is now appended to result bucket (e.g. 'video_tx_VP8').
202 // TODO(asapersson): Keep test below using the default video codec (which do
203 // not have the codec name appended ('video_tx')) until new tests have been
204 // running for some time.
205 IN_PROC_BROWSER_TEST_F(
206 WebRtcPerfBrowserTest,
207 MANUAL_RunsAudioVideoCall60SecsAndLogsInternalMetricsDefault) {
208 RunsAudioVideoCall60SecsAndLogsInternalMetrics("");
209 }
210
211 IN_PROC_BROWSER_TEST_F( 201 IN_PROC_BROWSER_TEST_F(
212 WebRtcPerfBrowserTest, 202 WebRtcPerfBrowserTest,
213 MANUAL_RunsAudioVideoCall60SecsAndLogsInternalMetricsVp8) { 203 MANUAL_RunsAudioVideoCall60SecsAndLogsInternalMetricsVp8) {
214 RunsAudioVideoCall60SecsAndLogsInternalMetrics("VP8"); 204 RunsAudioVideoCall60SecsAndLogsInternalMetrics("VP8");
215 } 205 }
216 206
217 IN_PROC_BROWSER_TEST_F( 207 IN_PROC_BROWSER_TEST_F(
218 WebRtcPerfBrowserTest, 208 WebRtcPerfBrowserTest,
219 MANUAL_RunsAudioVideoCall60SecsAndLogsInternalMetricsVp9) { 209 MANUAL_RunsAudioVideoCall60SecsAndLogsInternalMetricsVp9) {
220 RunsAudioVideoCall60SecsAndLogsInternalMetrics("VP9"); 210 RunsAudioVideoCall60SecsAndLogsInternalMetrics("VP9");
(...skipping 15 matching lines...) Expand all
236 } 226 }
237 227
238 #endif // BUILDFLAG(RTC_USE_H264) 228 #endif // BUILDFLAG(RTC_USE_H264)
239 229
240 IN_PROC_BROWSER_TEST_F( 230 IN_PROC_BROWSER_TEST_F(
241 WebRtcPerfBrowserTest, 231 WebRtcPerfBrowserTest,
242 MANUAL_RunsOneWayCall60SecsAndLogsInternalMetricsDefault) { 232 MANUAL_RunsOneWayCall60SecsAndLogsInternalMetricsDefault) {
243 RunsOneWayCall60SecsAndLogsInternalMetrics(""); 233 RunsOneWayCall60SecsAndLogsInternalMetrics("");
244 } 234 }
245 235
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media/webrtc_video_quality_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698