• Show log

    Commit

  • Hash : 3267115f
    Author : Patrick Steinhardt
    Date : 2017-06-28T15:41:15

    cmake: create own precompiled headers for tests
    
    As soon as we split up our CMakeBuild.txt build instructions, we will be
    unable to simply link against the git2 library's precompiled header from
    other targets. To avoid this future breakage, create a new precompiled
    header for our test suite. Next to being compatible with the split, this
    enables us to also include additional files like the clar headers, which
    may help speeding up compilation of the test suite.
    

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