- 11 Nov, 2017 1 commit
-
-
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
-
- 04 Aug, 2016 1 commit
-
-
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
-
- 21 Jun, 2016 1 commit
-
-
Avoid declaring old-style functions without any parameters. Functions not accepting any parameters should be declared with `void fn(void)`. See ISO C89 $3.5.4.3.
Patrick Steinhardt committed
-
- 17 Mar, 2015 1 commit
-
-
Edward Thomson committed
-
- 27 Feb, 2015 1 commit
-
-
Edward Thomson committed
-
- 05 Feb, 2015 1 commit
-
-
Edward Thomson committed
-
- 10 Dec, 2014 1 commit
-
-
Edward Thomson committed
-
- 02 Apr, 2014 1 commit
-
-
Vicent Marti committed
-
- 29 Mar, 2014 1 commit
-
-
Edward Thomson committed
-
- 28 Mar, 2014 1 commit
-
-
Edward Thomson committed
-
- 07 Mar, 2014 2 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
- 14 Nov, 2013 1 commit
-
-
Ben Straub committed
-
- 12 Sep, 2013 1 commit
-
-
nulltoken committed
-
- 04 Sep, 2013 1 commit
-
-
Russell Belfer committed
-
- 12 Aug, 2013 1 commit
-
-
Ben Straub committed
-
- 17 Jun, 2013 1 commit
-
-
Russell Belfer committed
-
- 10 Jun, 2013 1 commit
-
-
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
-
- 22 Mar, 2013 1 commit
-
-
Russell Belfer committed
-
- 21 Jan, 2013 1 commit
-
-
Russell Belfer committed
-
- 03 Jan, 2013 1 commit
-
-
Vicent Marti committed
-