commit | 8fd5bc0ccb83fa3e374a1ab7f2a43f401ef9f6a0 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Jan 22 03:19:20 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Jan 22 03:19:20 2016 +0000 |
tree | 770d50428897d0d9515baefe94169893317db1b3 | |
parent | 05c2f6b3d39ee92eae248e902a5a54fdcc6c696f [diff] | |
parent | 7f54348f302eea6cc6f0237ddd8775e061da63ac [diff] |
Merge "Loosen up sys_time.gettimeofday."
diff --git a/tests/sys_time_test.cpp b/tests/sys_time_test.cpp index bb142bc..18fbe10 100644 --- a/tests/sys_time_test.cpp +++ b/tests/sys_time_test.cpp
@@ -63,7 +63,7 @@ tv2.tv_usec += 1000000; } - // Should be less than (a very generous, to try to avoid flakiness) 1000us. + // Should be less than (a very generous, to try to avoid flakiness) 2ms (2000us). ASSERT_EQ(0, tv2.tv_sec); - ASSERT_LT(tv2.tv_usec, 1000); + ASSERT_LT(tv2.tv_usec, 2000); }