From a997893cfef848e129199c7a92740265599a9cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 21 May 2020 09:55:40 +0200 Subject: [PATCH] tests: add test on function string_base16_decode with a char >= 0xA0 --- tests/unit/core/test-core-string.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/unit/core/test-core-string.cpp b/tests/unit/core/test-core-string.cpp index 3f0217741..8674b6936 100644 --- a/tests/unit/core/test-core-string.cpp +++ b/tests/unit/core/test-core-string.cpp @@ -1682,6 +1682,7 @@ TEST(CoreString, Base16) { { "", "" }, { "abcdefgh", "6162636465666768" }, { "this is a *test*", "746869732069732061202A746573742A" }, + { "this is a *test*\xAA", "746869732069732061202A746573742AAA" }, { NULL, NULL } };