mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 12:57:05 +00:00

A few initial tests for commit parsing: "parse_buffer_test" tests git_commit__parse_buffer() with several malformed commit messages and a few corner cases which should pass. "parse_oid_test" tests git_commit__parse_oid() with several malformed commit lines containing broken SHA1 OIDs. Signed-off-by: Vicent Marti <tanoku@gmail.com> Signed-off-by: Andreas Ericsson <ae@op5.se>
25 lines
670 B
Plaintext
25 lines
670 B
Plaintext
Test sources should be named:
|
|
|
|
t????-function.c
|
|
|
|
where ???? is a four digit code. The first two digits classify
|
|
the test into a major category; the final two digits indicate the
|
|
sequence of the test within that category. The function part of
|
|
the test name should give a rough indication of what it does.
|
|
|
|
Categories
|
|
----------
|
|
|
|
00__: Core library routines based only on the standard library,
|
|
and that are essential for everything else to run. E.g.
|
|
errno and malloc.
|
|
|
|
01__: Basic hashing functions, needed to handle the content
|
|
addressable store.
|
|
|
|
02__: Basic object read access.
|
|
|
|
03__: Basic object writing.
|
|
|
|
04__: Parsing and loading commit data
|