libgit2/tests
Edward Thomson 4280fabb9f Merge pull request #3466 from libgit2/cmn/quick-parse-64
revwalk: make commit list use 64 bits for time
2015-10-15 07:10:48 -07:00
..
attr
blame Fix #3094 - improve use of portable size_t/ssize_t format specifiers. 2015-07-12 19:55:19 +02:00
buf
checkout git_futils_mkdir_*: make a relative-to-base mkdir 2015-09-17 10:00:35 -04:00
cherrypick
clar clar: test chdir 2015-06-29 22:13:40 +00:00
clone clone::nonetwork: don't use fixed size buffer 2015-09-14 13:58:38 -04:00
commit
config config: test that comments are left as with git 2015-09-18 12:09:33 +02:00
core Plug some leaks 2015-09-27 23:32:20 +02:00
date
describe
diff Fix binary diffs 2015-09-25 10:37:41 -07:00
fetchhead index, iterator, fetchhead: plug leaks 2015-06-26 19:00:33 +02:00
filter wildcard filters: move CHANGELOG message to 0.23+1 2015-07-10 09:53:30 -05:00
graph
index index: also try conflict mode when inserting 2015-09-30 09:06:09 -04:00
merge diff: don't feed large files to xdiff 2015-10-05 22:59:50 +02:00
network Tell the git_transport about the custom_headers 2015-09-08 14:02:33 -04:00
notes
object
odb odb: Prioritize alternate backends 2015-10-14 20:53:01 +02:00
online Merge pull request #3411 from spraints/custom-push-headers 2015-09-30 09:17:18 +02:00
pack
path
perf
rebase
refs git_futils_mkdir_*: make a relative-to-base mkdir 2015-09-17 10:00:35 -04:00
remote
repo Merge pull request #3434 from ethomson/reservednames 2015-09-21 06:01:03 +02:00
reset
resources repo::reservedname: test a submodule update 2015-09-18 12:17:49 -04:00
revert revert: correct test that added trailing newline 2015-07-07 17:01:49 -05:00
revwalk revwalk: make commit list use 64 bits for time 2015-10-14 16:54:13 +02:00
stash stash: const up conflict params 2015-06-29 21:23:09 +00:00
status git_futils_mkdir_*: make a relative-to-base mkdir 2015-09-17 10:00:35 -04:00
stress
submodule Merge pull request #3434 from ethomson/reservednames 2015-09-21 06:01:03 +02:00
threads iterator: use an options struct instead of args 2015-08-28 18:39:47 -04:00
trace Include stacktrace summary in memory leak output. 2015-06-29 16:39:11 -04:00
transport
win32 win32::longpath: don't print path 2015-09-28 16:46:09 -04:00
clar_libgit2_timer.c
clar_libgit2_timer.h
clar_libgit2_trace.c Include stacktrace summary in memory leak output. 2015-06-29 16:39:11 -04:00
clar_libgit2_trace.h
clar_libgit2.c cl_git_path_url: assert sane static buffer size 2015-09-14 14:05:01 -04:00
clar_libgit2.h git__getenv: utf-8 aware env reader 2015-07-02 16:35:43 +00:00
clar.c
clar.h
generate_crlf.sh crlf: script to generate expected crlf data 2015-06-22 11:59:58 -04:00
generate.py
main.c Include stacktrace summary in memory leak output. 2015-06-29 16:39:11 -04:00
README.md
valgrind-supp-mac.txt

Writing Clar tests for libgit2

For information on the Clar testing framework and a detailed introduction please visit:

https://github.com/vmg/clar

  • Write your modules and tests. Use good, meaningful names.

  • Make sure you actually build the tests by setting:

      cmake -DBUILD_CLAR=ON build/
    
  • Test:

      ./build/libgit2_clar
    
  • Make sure everything is fine.

  • Send your pull request. That's it.