| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |