From fd542dd43b0a0ff1589a09df94cd176f0c9fb171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Wed, 21 Dec 2022 19:13:25 +0100 Subject: [PATCH] build: Run tests under C locale This allows us to check for strings that contain translations. We could also force a locale (see phosh's screenshot tests) at a later point. --- tests/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/meson.build b/tests/meson.build index 715d671..5ddd4f4 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -3,6 +3,8 @@ if get_option('tests') test_env = [ 'G_DEBUG=gc-friendly,fatal-warnings', 'GSETTINGS_BACKEND=memory', + 'LANGUAGE=C', + 'LC_ALL=C', 'PYTHONDONTWRITEBYTECODE=yes', 'MALLOC_CHECK_=2', 'NO_AT_BRIDGE=1',