• Show log

    Commit

  • Hash : 4a0dceeb
    Author : lhchavez
    Date : 2020-10-11T17:53:10

    Make the Windows leak detection more robust
    
    This change:
    
    * Increases MY_ROW_LIMIT to 2M, since it has been failing in #5595's
      tests since it's _super_ close to the limit.
    * Calls `git_repository_free()` on a `git_repository` that was being
      leaked only in Windows.
    * Marks the global `git_repository` on `tests/repo/init.c` as `NULL`
      after being freed to make any accidental access more noisy.
    * Uses `cl_assert_equal_i()` in `test_trace_windows_stacktrace__leaks`
      to make the test failures more actionable.
    * Renames the globals in `tests/repo/init.c` so that they don't start
      with an underscore.