mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-04 09:18:48 +00:00
Merge pull request #2385 from karipe/development
Fix compile error on Visual Studio
This commit is contained in:
commit
ab882e21b4
@ -1610,8 +1610,8 @@ void test_diff_workdir__binary_detection(void)
|
||||
int i;
|
||||
git_buf data[10] = {
|
||||
{ "1234567890", 0, 0 }, /* 0 - all ascii text control */
|
||||
{ "Åü†HøπΩ", 0, 0 }, /* 1 - UTF-8 multibyte text */
|
||||
{ "\xEF\xBB\xBFÜ⤒ƒ8£€", 0, 0 }, /* 2 - UTF-8 with BOM */
|
||||
{ "\xC3\x85\xC3\xBC\xE2\x80\xA0\x48\xC3\xB8\xCF\x80\xCE\xA9", 0, 0 }, /* 1 - UTF-8 multibyte text */
|
||||
{ "\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 */
|
||||
{ STR3999Z, 0, 4000 }, /* 4 - ASCII with NUL at 4000 */
|
||||
{ STR4000 STR3999Z "x", 0, 8001 }, /* 5 - ASCII with NUL at 8000 */
|
||||
|
@ -167,7 +167,7 @@ void test_repo_pathspec__workdir4(void)
|
||||
|
||||
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_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_free(ps);
|
||||
|
Loading…
Reference in New Issue
Block a user