mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
attr: Update definition of binary macro
This commit is contained in:
@@ -403,7 +403,7 @@ int git_attr_cache__init(git_repository *repo)
|
||||
git_config_free(cfg);
|
||||
|
||||
/* insert default macros */
|
||||
return git_attr_add_macro(repo, "binary", "-diff -crlf -text");
|
||||
return git_attr_add_macro(repo, "binary", "-diff -merge -text -crlf");
|
||||
|
||||
cancel:
|
||||
attr_cache__free(cache);
|
||||
|
||||
@@ -20,20 +20,22 @@ void test_attr_macro__cleanup(void)
|
||||
|
||||
void test_attr_macro__macros(void)
|
||||
{
|
||||
const char *names[5] = { "rootattr", "binary", "diff", "crlf", "frotz" };
|
||||
const char *names[7] = { "rootattr", "binary", "diff", "crlf", "merge", "text", "frotz" };
|
||||
const char *names2[5] = { "mymacro", "positive", "negative", "rootattr", "another" };
|
||||
const char *names3[3] = { "macro2", "multi2", "multi3" };
|
||||
const char *values[5];
|
||||
const char *values[7];
|
||||
|
||||
g_repo = cl_git_sandbox_init("attr");
|
||||
|
||||
cl_git_pass(git_attr_get_many(values, g_repo, 0, "binfile", 5, names));
|
||||
cl_git_pass(git_attr_get_many(values, g_repo, 0, "binfile", 7, names));
|
||||
|
||||
cl_assert(GIT_ATTR_IS_TRUE(values[0]));
|
||||
cl_assert(GIT_ATTR_IS_TRUE(values[1]));
|
||||
cl_assert(GIT_ATTR_IS_FALSE(values[2]));
|
||||
cl_assert(GIT_ATTR_IS_FALSE(values[3]));
|
||||
cl_assert(GIT_ATTR_IS_UNSPECIFIED(values[4]));
|
||||
cl_assert(GIT_ATTR_IS_FALSE(values[4]));
|
||||
cl_assert(GIT_ATTR_IS_FALSE(values[5]));
|
||||
cl_assert(GIT_ATTR_IS_UNSPECIFIED(values[6]));
|
||||
|
||||
cl_git_pass(git_attr_get_many(values, g_repo, 0, "macro_test", 5, names2));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user