mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-05 18:44:31 +00:00

These are a couple of new clar helpers for testing that a file has expected contents that I extracted from the checkout code. Actually wrote this as part of an abandoned earlier attempt at a new filters API, but it will be useful now for some of the tests I'm going to write.
30 lines
694 B
C
30 lines
694 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);
|