Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrazymaster <ken.i54k@gmail.com>2013-07-15 02:39:16 +0400
committercrazymaster <ken.i54k@gmail.com>2013-07-15 02:39:16 +0400
commit19bee769d49467704f4d8ee36965c548cb40e3c6 (patch)
treeaafe93e45d468b731e6e05bc59821f020f2d397b /tests-clar/object
parenta91e4d6b21e141c2abc76b65b2d4c91d5d3e03cc (diff)
Revert "Replace Japanese characters with the encoded hexadecimal values"
This reverts commit a91e4d6b21e141c2abc76b65b2d4c91d5d3e03cc.
Diffstat (limited to 'tests-clar/object')
-rw-r--r--tests-clar/object/blob/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/object/blob/filter.c b/tests-clar/object/blob/filter.c
index b5e9bb298..50b4af4f4 100644
--- a/tests-clar/object/blob/filter.c
+++ b/tests-clar/object/blob/filter.c
@@ -15,7 +15,7 @@ static const char *g_raw[NUM_TEST_OBJECTS] = {
"foo\nbar\rboth\r\nreversed\n\ragain\nproblems\r",
"123\n\000\001\002\003\004abc\255\254\253\r\n",
"\xEF\xBB\xBFThis is UTF-8\n",
- "\xEF\xBB\xBF0xE30x810x0xBB0xE30x810x920xE30x810x0xBB0xE30x810x92\r\n0xE30x810x0xBB0xE30x810x920xE30x810x0xBB0xE30x810x92\r\n",
+ "\xEF\xBB\xBFほげほげ\r\nほげほげ\r\n",
"\xFE\xFF\x00T\x00h\x00i\x00s\x00!"
};
static git_off_t g_len[NUM_TEST_OBJECTS] = { -1, -1, -1, -1, -1, 17, -1, -1, 12 };
@@ -38,7 +38,7 @@ static git_buf g_crlf_filtered[NUM_TEST_OBJECTS] = {
{ "foo\nbar\rboth\nreversed\n\ragain\nproblems\r", 0, 38 },
{ "123\n\000\001\002\003\004abc\255\254\253\n", 0, 16 },
{ "\xEF\xBB\xBFThis is UTF-8\n", 0, 17 },
- { "\xEF\xBB\xBF0xE30x810x0xBB0xE30x810x920xE30x810x0xBB0xE30x810x92\n0xE30x810x0xBB0xE30x810x920xE30x810x0xBB0xE30x810x92\n", 0, 29 },
+ { "\xEF\xBB\xBFほげほげ\nほげほげ\n", 0, 29 },
{ "\xFE\xFF\x00T\x00h\x00i\x00s\x00!", 0, 12 }
};