• Show log

    Commit

  • Hash : e3a2a04c
    Author : Russell Belfer
    Date : 2014-04-18T14:29:58

    Preload attribute files that may contain macros
    
    There was a latent bug where files that use macro definitions
    could be parsed before the macro definitions were loaded.  Because
    of attribute file caching, preloading files that are going to be
    used doesn't add a significant amount of overhead, so let's always
    preload any files that could contain macros before we assemble the
    actual vector of files to scan for attributes.
    

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