1. 08 Sep, 2018 1 commit
  2. 06 Sep, 2018 5 commits
  3. 11 Nov, 2017 1 commit
    • clar: verify command line arguments before execute · 32758631
      When executing `libgit2_clar -smerge -invalid_option`, it will first execute
      the merge test suite and afterwards output help because of the invalid option.
      
      With this changa, it verifies all options before execute. If there are any
      invalid options, it will output help and exit without actually executing
      the test suites.
      Yoney committed
  4. 04 Aug, 2016 1 commit
    • clar: fix parsing of test suite prefixes · f2cab0a6
      When passing in a specific suite which should be executed by clar
      via `-stest::suite`, we try to parse this string and then include
      all tests contained in this suite. This also includes all tests
      in sub-suites, e.g. 'test::suite::foo'.
      
      In the case where multiple suites start with the same _string_,
      for example 'test::foo' and 'test::foobar', we fail to
      distinguish this correctly. When passing in `-stest::foobar`,
      we wrongly determine that 'test::foo' is a prefix and try to
      execute all of its matching functions. But as no function
      will now match 'test::foobar', we simply execute nothing.
      
      To fix this, we instead have to check if the prefix is an actual
      suite prefix as opposed to a simple string prefix. We do so by by
      inspecting if the first two characters trailing the prefix are
      our suite delimiters '::', and only consider the filter as
      matching in this case.
      Patrick Steinhardt committed
  5. 21 Jun, 2016 1 commit
  6. 17 Mar, 2015 1 commit
  7. 27 Feb, 2015 1 commit
  8. 05 Feb, 2015 1 commit
  9. 10 Dec, 2014 1 commit
  10. 02 Apr, 2014 1 commit
  11. 29 Mar, 2014 1 commit
  12. 28 Mar, 2014 1 commit
  13. 07 Mar, 2014 2 commits
  14. 14 Nov, 2013 1 commit
  15. 12 Sep, 2013 1 commit
  16. 04 Sep, 2013 1 commit
  17. 12 Aug, 2013 1 commit
  18. 17 Jun, 2013 1 commit
  19. 10 Jun, 2013 1 commit
    • Reorganize diff and add basic diff driver · 114f5a6c
      This is a significant reorganization of the diff code to break it
      into a set of more clearly distinct files and to document the new
      organization.  Hopefully this will make the diff code easier to
      understand and to extend.
      
      This adds a new `git_diff_driver` object that looks of diff driver
      information from the attributes and the config so that things like
      function content in diff headers can be provided.  The full driver
      spec is not implemented in the commit - this is focused on the
      reorganization of the code and putting the driver hooks in place.
      
      This also removes a few #includes from src/repository.h that were
      overbroad, but as a result required extra #includes in a variety
      of places since including src/repository.h no longer results in
      pulling in the whole world.
      Russell Belfer committed
  20. 22 Mar, 2013 1 commit
  21. 21 Jan, 2013 1 commit
  22. 03 Jan, 2013 1 commit