[tor-commits] [tor/master] test: Increase offset to rendcache descriptor time

nickm at torproject.org nickm at torproject.org
Mon Jun 20 14:20:49 UTC 2016


commit 85edef27eb495fe19d6ae08d94056ac367375316
Author: David Goulet <dgoulet at torproject.org>
Date:   Mon Jun 20 09:53:11 2016 -0400

    test: Increase offset to rendcache descriptor time
    
    Slow system can sometime take more than 10 seconds to reach the test
    callsite resulting in the unit test failing when using time in the future or
    in the past.
    
    Fixes #19465
    
    Signed-off-by: David Goulet <dgoulet at torproject.org>
---
 src/test/test_rendcache.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/test_rendcache.c b/src/test/test_rendcache.c
index eac41ec..c8279fc 100644
--- a/src/test/test_rendcache.c
+++ b/src/test/test_rendcache.c
@@ -17,8 +17,8 @@
 
 static const int RECENT_TIME = -10;
 static const int TIME_IN_THE_PAST = -(REND_CACHE_MAX_AGE + \
-                                      REND_CACHE_MAX_SKEW + 10);
-static const int TIME_IN_THE_FUTURE = REND_CACHE_MAX_SKEW + 10;
+                                      REND_CACHE_MAX_SKEW + 60);
+static const int TIME_IN_THE_FUTURE = REND_CACHE_MAX_SKEW + 60;
 
 static rend_data_t *
 mock_rend_data(const char *onion_address)





More information about the tor-commits mailing list