summaryrefslogtreecommitdiff
path: root/tests/iterator/tree.c
Commit message (Collapse)AuthorAgeFilesLines
* fileops: rename to "futils.h" to match function signaturesPatrick Steinhardt2019-07-201-1/+1
| | | | | | | | | Our file utils functions all have a "futils" prefix, e.g. `git_futils_touch`. One would thus naturally guess that their definitions and implementation would live in files "futils.h" and "futils.c", respectively, but in fact they live in "fileops.h". Rename the files to match expectations.
* Convert usage of `git_buf_free` to new `git_buf_dispose`Patrick Steinhardt2018-06-101-1/+1
|
* leaks: fix some leaks in the testsEdward Thomson2016-03-311-0/+4
|
* iterator: more pathlist-related tests should test actual pathsMarc Strapetz2016-03-241-5/+17
|
* iterator: give the tests a proper hierarchyEdward Thomson2016-03-241-0/+1064
Iterator tests were split over repo::iterator and diff::iterator, with duplication between the two. Move them to iterator::index, iterator::tree, and iterator::workdir.