libgit2/tests-clar
2013-09-20 15:38:15 -07:00
..
attr Revert PR #1462 and provide alternative fix 2013-08-09 10:52:35 -07:00
blame Trim fat from git_blame struct 2013-09-20 15:38:15 -07:00
buf
checkout Fix tests of file modes 2013-09-05 11:45:29 -07:00
clar Update clar 2013-09-04 16:23:00 -07:00
clone
commit
config Merge pull request #1772 from libgit2/config-iter 2013-08-28 06:04:51 -07:00
core Clean up one other mode_t assertion 2013-09-04 16:23:00 -07:00
date
diff Fix some newer GCC compiler warnings 2013-09-05 10:25:16 -07:00
fetchhead
index Better macro name for is-exec-bit-set test 2013-09-05 16:14:32 -07:00
merge Fix compilation warnings 2013-06-29 13:27:55 +02:00
network tests: Fix memory leaks 2013-09-07 17:51:24 +02:00
notes
object Port blame from git.git 2013-09-16 16:23:50 -07:00
odb odb: Error when streaming in too [few|many] bytes 2013-09-07 23:00:20 +02:00
online Merge pull request #1778 from libgit2/push_tag_to_tag_test 2013-08-16 16:22:37 -07:00
pack
refs odb: Teach loose backend to return EAMBIGUOUS 2013-09-10 22:36:13 +02:00
repo Better macro name for is-exec-bit-set test 2013-09-05 16:14:32 -07:00
reset
resources Port blame from git.git 2013-09-16 16:23:50 -07:00
revwalk revwalk: allow simplifying by first-parent 2013-09-09 20:31:14 +02:00
stash
status Split rewrites, status doesn't return rewrites 2013-08-28 08:30:19 -05:00
stress Trying to fix Win32 warnings 2013-08-22 14:45:10 -07:00
submodule Untracked directories with .git should be ignored 2013-07-10 12:15:03 -07:00
threads Fix typo _delete -> _free 2013-08-29 13:22:44 +02:00
trace
clar_libgit2.c Fix tests to use core.filemode correctly 2013-09-04 16:41:34 -07:00
clar_libgit2.h clar: Move cl_assert_equal_sz() definition to clar.h 2013-09-12 13:54:33 +02:00
clar.c clar: Fix clar__assert_equal error message formating 2013-09-12 13:54:22 +02:00
clar.h clar: Move cl_assert_equal_sz() definition to clar.h 2013-09-12 13:54:33 +02:00
generate.py
main.c
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.