1. 13 Jun, 2014 2 commits
  2. 07 Jun, 2014 3 commits
  3. 06 Jun, 2014 3 commits
  4. 05 Jun, 2014 1 commit
  5. 03 Jun, 2014 1 commit
  6. 02 Jun, 2014 1 commit
  7. 30 May, 2014 4 commits
  8. 29 May, 2014 1 commit
  9. 28 May, 2014 7 commits
  10. 27 May, 2014 1 commit
  11. 22 May, 2014 1 commit
  12. 21 May, 2014 2 commits
  13. 20 May, 2014 1 commit
  14. 19 May, 2014 2 commits
  15. 18 May, 2014 1 commit
  16. 17 May, 2014 1 commit
  17. 16 May, 2014 2 commits
  18. 15 May, 2014 1 commit
    • Better search path sandboxing · 8487e237
      There are a number of tests that modify the global or system
      search paths during the tests.  This adds a helper function to
      make it easier to restore those paths and makes sure that they
      are getting restored in a manner that preserves test isolation.
      Russell Belfer committed
  19. 12 May, 2014 1 commit
  20. 08 May, 2014 4 commits
    • Disable threads::refdb::edit_while_iterate test · bb45e390
      It seems that with the various recent changes to reference updating
      and reflog writing, that the thread safety of refdb updates has
      been reduced (either that or it was never thread safe and the
      window for error has increased).  Either way, this test is now
      sometimes segfaulting which is no good, so let's disable the test
      for now.  We don't really make any public promises about thread
      safety for this type of operation, so I think this is acceptable,
      at least in the short term.
      Russell Belfer committed
    • Don't always test composed-insensitive lookups · 8a2ef218
      Only on a filesystem that is composed/decomposed insensitive,
      should be testing that a branch can be looked up by the opposite
      form and still work correctly.
      Russell Belfer committed
    • Allow cl_repo_get_bool to work with missing key · be20ac5a
      One of the test helpers provides a quick way for looking up a
      boolean key.  But if the key way missing completely, the check
      would actually raise an error.  Given the way we use this helper,
      if the key is missing, this should just return false, I think.
      Russell Belfer committed
    • Pass unconverted data when iconv doesn't like it · 43a04135
      When using Iconv to convert unicode data and iconv doesn't like
      the source data (because it thinks that it's not actual UTF-8),
      instead of stopping the operation, just use the unconverted data.
      This will generally do the right thing on the filesystem, since
      that is the source of the non-UTF-8 path data anyhow.
      
      This adds some tests for creating and looking up branches with
      messy Unicode names.  Also, this takes the helper function that
      was previously internal to `git_repository_init` and makes it
      into `git_path_does_fs_decompose_unicode` which is a useful in
      tests to understand what the expected results should be.
      Russell Belfer committed