1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

tests: fix compilation of tests with clang (closes #275)

This commit is contained in:
Sébastien Helleu
2014-12-10 21:15:40 +01:00
parent 1f1611c916
commit 7818e08964
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -405,8 +405,8 @@ TEST(String, ConvertEscapedChars)
string_convert_escaped_chars ("\\0123")); /* invalid */
WEE_TEST_STR("\x41", string_convert_escaped_chars ("\\x41"));
WEE_TEST_STR("\x04z", string_convert_escaped_chars ("\\x4z"));
WEE_TEST_STR("\u0012zz", string_convert_escaped_chars ("\\u12zz"));
WEE_TEST_STR("\U00123456", string_convert_escaped_chars ("\\U00123456"));
WEE_TEST_STR(" zz", string_convert_escaped_chars ("\\u20zz"));
WEE_TEST_STR("\U00012345", string_convert_escaped_chars ("\\U00012345"));
WEE_TEST_STR("\U00000123zzz",
string_convert_escaped_chars ("\\U00123zzz"));
WEE_TEST_STR("",