• Show log

    Commit

  • Hash : 293c5ef2
    Author : Patrick Steinhardt
    Date : 2017-06-07T10:59:03

    tests: status::worktree: indicate skipped tests on Win32
    
    Some function bodies of tests which are not applicable to the Win32
    platform are completely #ifdef'd out instead of calling `cl_skip()`.
    This leaves us with no indication that these tests are not being
    executed at all and may thus cause decreased scrutiny when investigating
    skipped tests. Improve the situation by calling `cl_skip()` instead of
    just doing nothing.
    
    (cherry picked from commit 72c28ab011759dce113c2a0c7c36ebcd56bd6ddf)
    

  • README.md

  • 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.