From: Ronny Chevalier Date: Sun, 14 May 2017 11:19:11 +0000 (+0200) Subject: test-conf-parser: add valid and invalid utf8 test for config_parse_path X-Git-Tag: v234~202^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5ade2d6027c67ef5a16d4a0e38c9fa38fd68212;p=platform%2Fupstream%2Fsystemd.git test-conf-parser: add valid and invalid utf8 test for config_parse_path --- diff --git a/src/test/test-conf-parser.c b/src/test/test-conf-parser.c index 26ff270..77fcbc0 100644 --- a/src/test/test-conf-parser.c +++ b/src/test/test-conf-parser.c @@ -109,8 +109,10 @@ static void test_config_parse_path(void) { test_config_parse_path_one("/path", "/path"); test_config_parse_path_one("/path//////////", "/path"); test_config_parse_path_one("///path/foo///bar////bar//", "/path/foo/bar/bar"); + test_config_parse_path_one("/path/\xc3\x80", "/path/\xc3\x80"); test_config_parse_path_one("not_absolute/path", NULL); + test_config_parse_path_one("/path/\xc3\x7f", NULL); } static void test_config_parse_log_level(void) {