summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-01-04 17:46:38 +0100
committerVicent Marti <tanoku@gmail.com>2013-01-04 17:47:52 +0100
commita7ffd936bf26f6c7bb0a1d1dee811ace2c1c848e (patch)
tree2c3711b68191b455a0b65f2c106d85c552b52f4e
parentd0ae8b98de561abe59652f904a24f381c856dee6 (diff)
downloadlibgit2-clar2.tar.gz
clar: fix merge/setup.cclar2
-rw-r--r--tests-clar/merge/setup.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/tests-clar/merge/setup.c b/tests-clar/merge/setup.c
index d88b2d94c..946c67e7b 100644
--- a/tests-clar/merge/setup.c
+++ b/tests-clar/merge/setup.c
@@ -44,22 +44,6 @@ void test_merge_setup__cleanup(void)
cl_git_sandbox_cleanup();
}
-static bool test_file_contents(const char *filename, const char *expected)
-{
- git_buf file_path_buf = GIT_BUF_INIT, file_buf = GIT_BUF_INIT;
- bool equals;
-
- git_buf_printf(&file_path_buf, "%s/%s", git_repository_path(repo), filename);
-
- cl_git_pass(git_futils_readbuffer(&file_buf, file_path_buf.ptr));
- equals = (strcmp(file_buf.ptr, expected) == 0);
-
- git_buf_free(&file_path_buf);
- git_buf_free(&file_buf);
-
- return equals;
-}
-
static void write_file_contents(const char *filename, const char *output)
{
git_buf file_path_buf = GIT_BUF_INIT;
@@ -77,18 +61,14 @@ struct merge_head_cb_data {
unsigned int i;
};
-int merge_head_foreach_cb(git_oid *oid, void *payload)
+static int merge_head_foreach_cb(const git_oid *oid, void *payload)
{
git_oid expected_oid;
-
struct merge_head_cb_data *cb_data = payload;
git_oid_fromstr(&expected_oid, cb_data->oid_str[cb_data->i]);
-
cl_assert(git_oid_cmp(&expected_oid, oid) == 0);
-
cb_data->i++;
-
return 0;
}