1. 30 Jan, 2019 1 commit
  2. 28 Jan, 2019 7 commits
  3. 18 Jan, 2019 1 commit
  4. 17 Jan, 2019 1 commit
  5. 12 Dec, 2018 1 commit
  6. 28 Nov, 2018 1 commit
  7. 19 Nov, 2018 2 commits
  8. 12 Nov, 2018 1 commit
  9. 17 Oct, 2018 1 commit
  10. 16 Oct, 2018 2 commits
  11. 13 Oct, 2018 1 commit
  12. 10 Oct, 2018 2 commits
  13. 09 Oct, 2018 2 commits
  14. 30 Sep, 2018 1 commit
  15. 11 Sep, 2018 2 commits
  16. 05 Sep, 2018 1 commit
  17. 04 Sep, 2018 1 commit
  18. 31 Aug, 2018 1 commit
  19. 26 Aug, 2018 1 commit
  20. 21 Aug, 2018 1 commit
    • Oran Agra's avatar
      Fix unstable tests on slow machines. · c8452ab0
      Oran Agra authored
      Few tests had borderline thresholds that were adjusted.
      
      The slave buffers test had two issues, preventing the slave buffer from growing:
      1) the slave didn't necessarily go to sleep on time, or woke up too early,
         now using SIGSTOP to make sure it goes to sleep exactly when we want.
      2) the master disconnected the slave on timeout
      c8452ab0
  21. 13 Aug, 2018 1 commit
  22. 02 Aug, 2018 3 commits
  23. 01 Aug, 2018 1 commit
  24. 31 Jul, 2018 1 commit
  25. 30 Jul, 2018 1 commit
    • Oran Agra's avatar
      test suite conveniency improvements · 78292876
      Oran Agra authored
      * allowing --single to be repeated
      * adding --only so that only a specific test inside a unit can be run
      * adding --skiptill useful to resume a test that crashed passed the problematic unit.
        useful together with --clients 1
      * adding --skipfile to use a file containing list of tests names to skip
      * printing the names of the tests that are skiped by skipfile or denytags
      * adding --config to add config file options from command line
      78292876
  26. 24 Jul, 2018 1 commit
    • Oran Agra's avatar
      fix slave buffer test suite false positives · d4ae76d1
      Oran Agra authored
      it looks like on slow machines we're getting:
      [err]: slave buffer are counted correctly in tests/unit/maxmemory.tcl
      Expected condition '$slave_buf > 2*1024*1024' to be true (16914 > 2*1024*1024)
      
      this is a result of the slave waking up too early and eating the
      slave buffer before the traffic and the test ends.
      d4ae76d1
  27. 18 Jul, 2018 1 commit
    • Oran Agra's avatar
      make active defrag test more stable · f89c93c8
      Oran Agra authored
      on slower machines, the active defrag test tended to fail.
      although the fragmentation ratio was below the treshold, the defragger was
      still in the middle of a scan cycle.
      
      this commit changes:
      - the defragger uses the current fragmentation state, rather than the cache one
        that is updated by server cron every 100ms. this actually fixes a bug of
        starting one excess scan cycle
      - the test lets the defragger use more CPU cycles, in hope that the defrag
        will be faster, but also give it more time before we give up.
      f89c93c8