mirror of
https://git.proxmox.com/git/libgit2
synced 2025-12-07 10:46:26 +00:00
It turns out that commit 31e9cfc4cbcaf1b38cdd3dbe3282a8f57e5366a5 did not fix the GIT_USUSED behavior on all platforms. This commit walks through and really cleans things up more thoroughly, getting rid of the unnecessary stuff. To remove the use of some GIT_UNUSED, I ended up adding a couple of new iterators for hashtables that allow you to iterator just over keys or just over values. In making this change, I found a bug in the clar tests (where we were doing *count++ but meant to do (*count)++ to increment the value). I fixed that but then found the test failing because it was not really using an empty repo. So, I took some of the code that I wrote for iterator testing and moved it to clar_helpers.c, then made use of that to make it easier to open fixtures on a per test basis even within a single test file. |
||
|---|---|---|
| .. | ||
| resources | ||
| .gitignore | ||
| NAMING | ||
| t00-core.c | ||
| t01-data.h | ||
| t01-rawobj.c | ||
| t03-data.h | ||
| t03-objwrite.c | ||
| t04-commit.c | ||
| t05-revwalk.c | ||
| t06-index.c | ||
| t07-hashtable.c | ||
| t08-tag.c | ||
| t09-tree.c | ||
| t10-refs.c | ||
| t12-repo.c | ||
| t13-threads.c | ||
| t17-bufs.c | ||
| t18-status.c | ||
| test_helpers.c | ||
| test_helpers.h | ||
| test_lib.c | ||
| test_lib.h | ||
| test_main.c | ||
| tests.supp | ||