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

Unified Diff: webrtc/base/gunit.h

Issue 2677743002: Increase STUN RTOs (Closed)
Patch Set: Fix some comments Created 3 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 | webrtc/base/messagequeue.h » ('j') | webrtc/base/messagequeue.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/gunit.h
diff --git a/webrtc/base/gunit.h b/webrtc/base/gunit.h
index d49872db19021c2d52d977f79a0896218b08cd7b..d878ed99c5318d001f989abc179c7bf0ec0b8f13 100644
--- a/webrtc/base/gunit.h
+++ b/webrtc/base/gunit.h
@@ -92,6 +92,7 @@
// Wait until "ex" is true, or "timeout" expires, using fake clock where
// messages are processed every millisecond.
+// TODO(pthatcher): Increase this to 10ms to speed up some tests.
Taylor Brandstetter 2017/02/06 19:23:42 I'd recommend removing this TODO. Individual tests
#define SIMULATED_WAIT(ex, timeout, clock) \
for (int64_t start = rtc::TimeMillis(); \
!(ex) && rtc::TimeMillis() < start + (timeout);) { \
« no previous file with comments | « no previous file | webrtc/base/messagequeue.h » ('j') | webrtc/base/messagequeue.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698