mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 11:20:59 +00:00

These tests want to test that we don't recalculate entries which match the index already. This is however something we force when truncating racily-clean entries. Tick the index forward as we know that we don't perform the modifications which the racily-clean code is trying to avoid.
32 lines
737 B
C
32 lines
737 B
C
#include "buffer.h"
|
|
#include "git2/object.h"
|
|
#include "git2/repository.h"
|
|
|
|
extern void assert_on_branch(git_repository *repo, const char *branch);
|
|
extern void reset_index_to_treeish(git_object *treeish);
|
|
|
|
#define check_file_contents(PATH,EXP) \
|
|
cl_assert_equal_file(EXP,0,PATH)
|
|
|
|
#define check_file_contents_nocr(PATH,EXP) \
|
|
cl_assert_equal_file_ignore_cr(EXP,0,PATH)
|
|
|
|
typedef struct {
|
|
int n_conflicts;
|
|
int n_dirty;
|
|
int n_updates;
|
|
int n_untracked;
|
|
int n_ignored;
|
|
int debug;
|
|
} checkout_counts;
|
|
|
|
extern int checkout_count_callback(
|
|
git_checkout_notify_t why,
|
|
const char *path,
|
|
const git_diff_file *baseline,
|
|
const git_diff_file *target,
|
|
const git_diff_file *workdir,
|
|
void *payload);
|
|
|
|
extern void tick_index(git_index *index);
|