bdafeae0b9
In a preceding commit we fully applied the "index-compatibility.pending.cocci" rule to "t/helper/*". Let's now stop defining "USE_THE_INDEX_COMPATIBILITY_MACROS" in test-tool.h itself, and instead instead define "USE_THE_INDEX_VARIABLE" in the individual test helpers that need it. This mirrors how we do the same thing in the "builtin/" directory. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
23 lines
548 B
C
23 lines
548 B
C
#define USE_THE_INDEX_VARIABLE
|
|
#include "test-tool.h"
|
|
#include "cache.h"
|
|
#include "lockfile.h"
|
|
|
|
int cmd__write_cache(int argc, const char **argv)
|
|
{
|
|
struct lock_file index_lock = LOCK_INIT;
|
|
int i, cnt = 1;
|
|
if (argc == 2)
|
|
cnt = strtol(argv[1], NULL, 0);
|
|
setup_git_directory();
|
|
repo_read_index(the_repository);
|
|
for (i = 0; i < cnt; i++) {
|
|
repo_hold_locked_index(the_repository, &index_lock,
|
|
LOCK_DIE_ON_ERROR);
|
|
if (write_locked_index(&the_index, &index_lock, COMMIT_LOCK))
|
|
die("unable to write index file");
|
|
}
|
|
|
|
return 0;
|
|
}
|