From 8c23552ed248eed8793e3f818d67ac295ae64f6d Mon Sep 17 00:00:00 2001 From: Ronny Chevalier Date: Sun, 14 May 2017 13:19:11 +0200 Subject: [PATCH] test-conf-parser: add valid and invalid utf8 test for config_parse_path --- src/test/test-conf-parser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/test-conf-parser.c b/src/test/test-conf-parser.c index 8e951d7cf..a66ed1bd3 100644 --- a/src/test/test-conf-parser.c +++ b/src/test/test-conf-parser.c @@ -115,8 +115,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) { -- 2.30.2