OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 #include <stdio.h> | 10 #include <stdio.h> |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 | 215 |
216 bool IsTextureSupported() const override { return false; } | 216 bool IsTextureSupported() const override { return false; } |
217 | 217 |
218 void Wait() { | 218 void Wait() { |
219 // Frame comparisons can be very expensive. Wait for test to be done, but | 219 // Frame comparisons can be very expensive. Wait for test to be done, but |
220 // at time-out check if frames_processed is going up. If so, give it more | 220 // at time-out check if frames_processed is going up. If so, give it more |
221 // time, otherwise fail. Hopefully this will reduce test flakiness. | 221 // time, otherwise fail. Hopefully this will reduce test flakiness. |
222 | 222 |
223 int last_frames_processed = -1; | 223 int last_frames_processed = -1; |
224 EventTypeWrapper eventType; | 224 EventTypeWrapper eventType; |
| 225 int iteration = 0; |
225 while ((eventType = done_->Wait(FullStackTest::kDefaultTimeoutMs)) != | 226 while ((eventType = done_->Wait(FullStackTest::kDefaultTimeoutMs)) != |
226 kEventSignaled) { | 227 kEventSignaled) { |
227 int frames_processed; | 228 int frames_processed; |
228 { | 229 { |
229 rtc::CritScope crit(&comparison_lock_); | 230 rtc::CritScope crit(&comparison_lock_); |
230 frames_processed = frames_processed_; | 231 frames_processed = frames_processed_; |
231 } | 232 } |
| 233 |
| 234 // Print some output so test infrastructure won't think we've crashed. |
| 235 const char* kKeepAliveMessages[3] = { |
| 236 "Uh, I'm-I'm not quite dead, sir.", |
| 237 "Uh, I-I think uh, I could pull through, sir.", |
| 238 "Actually, I think I'm all right to come with you--"}; |
| 239 printf("- %s\n", kKeepAliveMessages[iteration++ % 3]); |
| 240 |
232 if (last_frames_processed == -1) { | 241 if (last_frames_processed == -1) { |
233 last_frames_processed = frames_processed; | 242 last_frames_processed = frames_processed; |
234 continue; | 243 continue; |
235 } | 244 } |
236 ASSERT_GT(frames_processed, last_frames_processed) | 245 ASSERT_GT(frames_processed, last_frames_processed) |
237 << "Analyzer stalled while waiting for test to finish."; | 246 << "Analyzer stalled while waiting for test to finish."; |
238 last_frames_processed = frames_processed; | 247 last_frames_processed = frames_processed; |
239 } | 248 } |
240 | 249 |
| 250 if (iteration > 0) |
| 251 printf("- Farewell, sweet Concorde!\n"); |
| 252 |
241 // Signal stats polling thread if that is still waiting and stop it now, | 253 // Signal stats polling thread if that is still waiting and stop it now, |
242 // since it uses the send_stream_ reference that might be reclaimed after | 254 // since it uses the send_stream_ reference that might be reclaimed after |
243 // returning from this method. | 255 // returning from this method. |
244 done_->Set(); | 256 done_->Set(); |
245 EXPECT_TRUE(stats_polling_thread_->Stop()); | 257 EXPECT_TRUE(stats_polling_thread_->Stop()); |
246 } | 258 } |
247 | 259 |
248 VideoCaptureInput* input_; | 260 VideoCaptureInput* input_; |
249 Transport* transport_; | 261 Transport* transport_; |
250 PacketReceiver* receiver_; | 262 PacketReceiver* receiver_; |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 50000, | 775 50000, |
764 200000, | 776 200000, |
765 2000000, | 777 2000000, |
766 0.0, | 778 0.0, |
767 0.0, | 779 0.0, |
768 kFullStackTestDurationSecs, | 780 kFullStackTestDurationSecs, |
769 "VP9"}; | 781 "VP9"}; |
770 RunTest(screenshare_params); | 782 RunTest(screenshare_params); |
771 } | 783 } |
772 } // namespace webrtc | 784 } // namespace webrtc |
OLD | NEW |