summaryrefslogtreecommitdiff
path: root/tests/libgit2/odb/backend
Commit message (Collapse)AuthorAgeFilesLines
* sha256: wrap_odb supports SHA256Edward Thomson2023-05-062-2/+2
|
* odb: test object lookups from git_repository_wrap_odbEdward Thomson2023-05-061-1/+20
|
* odb: test git_odb_backend_looseEdward Thomson2023-02-271-0/+43
|
* sha256: indirection for experimental functionsEdward Thomson2022-07-137-25/+27
| | | | | The experimental function signature is only available when `GIT_EXPERIMENTAL_SHA256` is enabled.
* odb: add git_odb_optionsEdward Thomson2022-06-202-2/+2
| | | | | Users will need to be able to specify the object id type for the given object database; add a new `git_odb_options` with that option.
* oid: give oids a typeEdward Thomson2022-06-206-23/+23
| | | | | `git_oid`s now have a type, and we require the oid type when creating the object id from creation functions.
* oid: define GIT_OID_SHA1_ZEROEdward Thomson2022-06-141-1/+1
| | | | | Callers should not assume the layout of the oid structure; provide them a macro that defines the null / zero sha1 object id.
* oid: `GIT_OID_*SZ` is now `GIT_OID_SHA1_*SIZE`Edward Thomson2022-06-141-3/+3
| | | | | In preparation for SHA256 support, `GIT_OID_RAWSZ` and `GIT_OID_HEXSZ` need to indicate that they're the size of _SHA1_ OIDs.
* refactor: `tests` is now `tests/libgit2`Edward Thomson2022-02-228-0/+996
Like we want to separate libgit2 and utility source code, we want to separate libgit2 and utility tests. Start by moving all the tests into libgit2.