Skip to content
Snippets Groups Projects
  1. Apr 10, 2018
  2. Apr 09, 2018
  3. Apr 05, 2018
  4. Mar 27, 2018
  5. Mar 26, 2018
  6. Mar 20, 2018
  7. Mar 19, 2018
  8. Mar 13, 2018
  9. Mar 08, 2018
    • Isis Lovecruft's avatar
      changes: Fix changes file for bug25450. · 9191d962
      Isis Lovecruft authored
      It didn't like me insulting my patch, I guess.
      Unverified
      9191d962
    • Isis Lovecruft's avatar
      test: Increase time limit for IP creation in an HS test. · 0545f64d
      Isis Lovecruft authored
      This should avoid most intermittent test failures on developer and CI machines,
      but there could (and probably should) be a more elegant solution.
      
      Also, this test was testing that the IP was created and its expiration time was
      set to a time greater than or equal to `now+INTRO_POINT_LIFETIME_MIN_SECONDS+5`:
      
          /* Time to expire MUST also be in that range. We add 5 seconds because
           * there could be a gap between setting now and the time taken in
           * service_intro_point_new. On ARM, it can be surprisingly slow... */
          tt_u64_op(ip->time_to_expire, OP_GE,
                    now + INTRO_POINT_LIFETIME_MIN_SECONDS + 5);
      
      However, this appears to be a typo, since, according to the comment above it,
      adding five seconds was done because the IP creation can be slow on some
      systems.  But the five seconds is added to the *minimum* time we're comparing
      against, and so it actually functions to make this test *more* likely to fail on
      slower systems.  (It should either subtract five seconds, or instead add it to
      time_to_expire.)
      
       * FIXES #25450: https://bugs.torproject.org/25450
      Unverified
      0545f64d
  10. Mar 03, 2018
Loading