Commit ab882e21 by Vicent Marti

Merge pull request #2385 from karipe/development

Fix compile error on Visual Studio
parents 63e8c3fd 3ac1ff42
...@@ -1610,8 +1610,8 @@ void test_diff_workdir__binary_detection(void) ...@@ -1610,8 +1610,8 @@ void test_diff_workdir__binary_detection(void)
int i; int i;
git_buf data[10] = { git_buf data[10] = {
{ "1234567890", 0, 0 }, /* 0 - all ascii text control */ { "1234567890", 0, 0 }, /* 0 - all ascii text control */
{ "Åü†HøπΩ", 0, 0 }, /* 1 - UTF-8 multibyte text */ { "\xC3\x85\xC3\xBC\xE2\x80\xA0\x48\xC3\xB8\xCF\x80\xCE\xA9", 0, 0 }, /* 1 - UTF-8 multibyte text */
{ "\xEF\xBB\xBFÜ⤒ƒ8£€", 0, 0 }, /* 2 - UTF-8 with BOM */ { "\xEF\xBB\xBF\xC3\x9C\xE2\xA4\x92\xC6\x92\x38\xC2\xA3\xE2\x82\xAC", 0, 0 }, /* 2 - UTF-8 with BOM */
{ STR999Z, 0, 1000 }, /* 3 - ASCII with NUL at 1000 */ { STR999Z, 0, 1000 }, /* 3 - ASCII with NUL at 1000 */
{ STR3999Z, 0, 4000 }, /* 4 - ASCII with NUL at 4000 */ { STR3999Z, 0, 4000 }, /* 4 - ASCII with NUL at 4000 */
{ STR4000 STR3999Z "x", 0, 8001 }, /* 5 - ASCII with NUL at 8000 */ { STR4000 STR3999Z "x", 0, 8001 }, /* 5 - ASCII with NUL at 8000 */
......
...@@ -167,7 +167,7 @@ void test_repo_pathspec__workdir4(void) ...@@ -167,7 +167,7 @@ void test_repo_pathspec__workdir4(void)
cl_git_pass(git_pathspec_match_workdir(&m, g_repo, 0, ps)); cl_git_pass(git_pathspec_match_workdir(&m, g_repo, 0, ps));
cl_assert_equal_sz(13, git_pathspec_match_list_entrycount(m)); cl_assert_equal_sz(13, git_pathspec_match_list_entrycount(m));
cl_assert_equal_s("", git_pathspec_match_list_entry(m, 12)); cl_assert_equal_s("\xE8\xBF\x99", git_pathspec_match_list_entry(m, 12));
git_pathspec_match_list_free(m); git_pathspec_match_list_free(m);
git_pathspec_free(ps); git_pathspec_free(ps);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment