summaryrefslogtreecommitdiff
path: root/tests/structinit/structinit.c
Commit message (Collapse)AuthorAgeFilesLines
* structinit test: only run on DEBUG buildsEdward Thomson2015-01-211-148/+0
| | | | | | | The structinit tests don't make sense unless structure padding is uniformly initialized, which is unlikely to happen on release builds. Only enable them for DEBUG builds. Further, rename them to core::structinit.
* structinit test: show which byte differsEdward Thomson2015-01-211-5/+20
|
* Add extern function to initialize submodule update options.David Calavera2015-01-071-0/+5
|
* Custom transport: minor cleanupsEdward Thomson2014-08-141-0/+1
| | | | | | | | | | | | * Move the transport registration mechanisms into a new header under 'sys/' because this is advanced stuff. * Remove the 'priority' argument from the registration as it adds unnecessary complexity. (Since transports cannot decline to operate, only the highest priority transport is ever executed.) Users who require per-priority transports can implement that in their custom transport themselves. * Simplify registration further by taking a scheme (eg "http") instead of a prefix (eg "http://").
* Fix remaining init_options inconsistenciesRussell Belfer2014-05-021-2/+2
| | | | | There were a couple of "init_opts()" functions a few more cases of structure initialization that I somehow missed.
* Update git_merge_tree_opts to git_merge_optionsEdward Thomson2014-03-201-2/+2
|
* Change signature of `git_merge` to take merge and checkout optsEdward Thomson2014-03-201-5/+0
|
* Introduce git_merge_file for consumersEdward Thomson2014-03-201-0/+10
|
* git_revert_opts -> git_revert_optionsoptions-namesBen Straub2014-03-061-2/+2
|
* git_checkout_opts -> git_checkout_optionsBen Straub2014-03-061-2/+2
|
* tests: MSVC compatCarlos Martín Nieto2014-03-061-2/+4
| | | | | MSVC doesn't like declaring variables in the middle of a block, so make sure we only declare variables at the beginning of a block.
* Added function-based initializers for every options struct.Matthew Bowen2014-03-051-0/+120
The basic structure of each function is courtesy of arrbee.