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);) { \ |