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 } |
232 if (last_frames_processed == -1) { | 233 if (last_frames_processed == -1) { |
233 last_frames_processed = frames_processed; | 234 last_frames_processed = frames_processed; |
235 | |
236 // Print some output so test infrastructure won't think we've crashed. | |
237 const char* kKeepAliveMessages[3] = { | |
238 "Uh, I'm-I'm not quite dead, sir.", | |
pbos-webrtc
2015/08/31 12:30:27
Wat? Where should this really be? This should be c
sprang_webrtc
2015/08/31 13:05:17
This should be called for every timeout (kDefaultT
| |
239 "Uh, I-I think uh, I could pull through, sir.", | |
240 "Actually, I think I'm all right to come with you--"}; | |
241 printf("%s\n", kKeepAliveMessages[iteration++ % 3]); | |
242 | |
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 printf("Farewell, sweet Concorde!\n"); | |
251 | |
241 // Signal stats polling thread if that is still waiting and stop it now, | 252 // 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 | 253 // since it uses the send_stream_ reference that might be reclaimed after |
243 // returning from this method. | 254 // returning from this method. |
244 done_->Set(); | 255 done_->Set(); |
245 EXPECT_TRUE(stats_polling_thread_->Stop()); | 256 EXPECT_TRUE(stats_polling_thread_->Stop()); |
246 } | 257 } |
247 | 258 |
248 VideoCaptureInput* input_; | 259 VideoCaptureInput* input_; |
249 Transport* transport_; | 260 Transport* transport_; |
250 PacketReceiver* receiver_; | 261 PacketReceiver* receiver_; |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
763 50000, | 774 50000, |
764 200000, | 775 200000, |
765 2000000, | 776 2000000, |
766 0.0, | 777 0.0, |
767 0.0, | 778 0.0, |
768 kFullStackTestDurationSecs, | 779 kFullStackTestDurationSecs, |
769 "VP9"}; | 780 "VP9"}; |
770 RunTest(screenshare_params); | 781 RunTest(screenshare_params); |
771 } | 782 } |
772 } // namespace webrtc | 783 } // namespace webrtc |
OLD | NEW |