summaryrefslogtreecommitdiff
path: root/tests/mailmap
Commit message (Collapse)AuthorAgeFilesLines
* str: introduce `git_str` for internal, `git_buf` is externalethomson/gitstrEdward Thomson2021-10-171-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | libgit2 has two distinct requirements that were previously solved by `git_buf`. We require: 1. A general purpose string class that provides a number of utility APIs for manipulating data (eg, concatenating, truncating, etc). 2. A structure that we can use to return strings to callers that they can take ownership of. By using a single class (`git_buf`) for both of these purposes, we have confused the API to the point that refactorings are difficult and reasoning about correctness is also difficult. Move the utility class `git_buf` to be called `git_str`: this represents its general purpose, as an internal string buffer class. The name also is an homage to Junio Hamano ("gitstr"). The public API remains `git_buf`, and has a much smaller footprint. It is generally only used as an "out" param with strict requirements that follow the documentation. (Exceptions exist for some legacy APIs to avoid breaking callers unnecessarily.) Utility functions exist to convert a user-specified `git_buf` to a `git_str` so that we can call internal functions, then converting it back again.
* buf: remove internal `git_buf_text` namespaceEdward Thomson2021-05-111-2/+1
| | | | | The `git_buf_text` namespace is unnecessary and strange. Remove it, just keep the functions prefixed with `git_buf`.
* tests: mailmap: avoid definition of unused static variablesPatrick Steinhardt2018-11-282-23/+23
| | | | | | | | | | | The mailmap testdata header contains a set of static variable definitions. As these variables aren't used in all places where they are used, they trigger the unused-const-variable warnings. As we have currently disabled those warnings explicitly, they are never triggered, but we intend to enable them. Avoid the issue by only keeping variable definitions that are actually used in all locations. Move the others to where they are used.
* tests: mailmap/parsing: add a missing cl_git_passEtienne Samson2018-07-061-1/+1
| | | Reported by Coverity, CID 1393483
* Require the length argument to git_mailmap_from_buffer and make ↵Nika Layzell2018-06-172-2/+4
| | | | mailmap_add_buffer internal
* mailmap: git_buf_free => git_buf_disposeNika Layzell2018-06-141-1/+1
|
* mailmap: API and style cleanupNika Layzell2018-06-144-14/+7
|
* mailmap: Updates tests for new API and featuresNika Layzell2018-06-144-32/+148
|
* mailmap: API and style cleanupNika Layzell2018-06-142-33/+68
|
* mailmap: Switch mailmap parsing to use the git_parse moduleNika Layzell2018-06-143-62/+30
|
* mailmap: Fix some other minor style nitsEmilio Cobos Álvarez2018-06-141-7/+7
|
* mailmap: Fix more bugs which snuck in when I rebasedNika Layzell2018-06-143-6/+5
|
* mailmap: Add a bunch of tests for the new mailmap functionalityNika Layzell2018-06-143-0/+245
|
* mailmap: Add some super-basic testsEmilio Cobos Álvarez2018-06-141-0/+98