tests: use UTF-8 to prevent creation of invalid converters

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
Yury V. Zaytsev 2024-09-12 07:55:18 +02:00
parent 319598df41
commit f34e2ae715
5 changed files with 5 additions and 5 deletions

View File

@ -42,7 +42,7 @@
static void
setup (void)
{
str_init_strings (NULL);
str_init_strings ("UTF-8");
vfs_init ();
vfs_init_localfs ();

View File

@ -42,7 +42,7 @@
static void
setup (void)
{
str_init_strings (NULL);
str_init_strings ("UTF-8");
vfs_init ();
vfs_init_localfs ();

View File

@ -60,7 +60,7 @@ init_test_classes (void)
static void
setup (void)
{
str_init_strings (NULL);
str_init_strings ("UTF-8");
vfs_init ();
vfs_init_localfs ();

View File

@ -45,7 +45,7 @@ static struct vfs_class vfs_test_ops1, vfs_test_ops2, vfs_test_ops3;
static void
setup (void)
{
str_init_strings (NULL);
str_init_strings ("UTF-8");
vfs_init ();
vfs_init_localfs ();

View File

@ -48,7 +48,7 @@ static struct vfs_class vfs_test_ops1, vfs_test_ops2, vfs_test_ops3;
static void
setup (void)
{
str_init_strings (NULL);
str_init_strings ("UTF-8");
vfs_init ();
vfs_init_localfs ();