]> git.proxmox.com Git - libgit2.git/commit - tests/diff/workdir.c
Clean up GIT_UNUSED macros on all platforms
authorRussell Belfer <arrbee@arrbee.com>
Wed, 29 Feb 2012 20:04:59 +0000 (12:04 -0800)
committerRussell Belfer <arrbee@arrbee.com>
Fri, 2 Mar 2012 23:51:55 +0000 (15:51 -0800)
commit854eccbb2d86c2910f9d98dc52f9ebd0e37c262a
treeb22048a02480598477cde9c41fc16d3967226d6b
parent74fa4bfae37e9d7c9e35550c881b114d7a83c4fa
Clean up GIT_UNUSED macros on all platforms

It turns out that commit 31e9cfc4cbcaf1b38cdd3dbe3282a8f57e5366a5
did not fix the GIT_USUSED behavior on all platforms.  This commit
walks through and really cleans things up more thoroughly, getting
rid of the unnecessary stuff.

To remove the use of some GIT_UNUSED, I ended up adding a couple
of new iterators for hashtables that allow you to iterator just
over keys or just over values.

In making this change, I found a bug in the clar tests (where we
were doing *count++ but meant to do (*count)++ to increment the
value).  I fixed that but then found the test failing because it
was not really using an empty repo.  So, I took some of the code
that I wrote for iterator testing and moved it to clar_helpers.c,
then made use of that to make it easier to open fixtures on a
per test basis even within a single test file.
31 files changed:
src/attr.c
src/cc-compat.h
src/config_file.c
src/diff.c
src/diff_output.c
src/hashtable.h
src/odb_pack.c
src/pkt.c
src/refs.c
src/remote.c
src/revwalk.c
src/transport.c
src/transports/local.c
src/win32/posix.h
src/win32/pthread.c
tests-clar/attr/repo.c
tests-clar/clar_helpers.c
tests-clar/clar_libgit2.h
tests-clar/config/multivar.c
tests-clar/core/dirent.c
tests-clar/diff/blob.c
tests-clar/diff/index.c
tests-clar/diff/iterator.c
tests-clar/diff/tree.c
tests-clar/diff/workdir.c
tests-clar/status/ignore.c
tests-clar/status/worktree.c
tests/t00-core.c
tests/t07-hashtable.c
tests/t18-status.c
tests/test_main.c