From 57f79da846ad3319a5b02e0481ca549a04f39e75 Mon Sep 17 00:00:00 2001 From: Vladimir Davidovich Date: Sun, 16 Nov 2025 17:49:16 +0300 Subject: [PATCH] Enable Globalization Invariant Mode for tests --- test/TestBuilder.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/TestBuilder.cs b/test/TestBuilder.cs index d24a1d28..5f7b6511 100644 --- a/test/TestBuilder.cs +++ b/test/TestBuilder.cs @@ -297,6 +297,9 @@ public static void RunNodeTestCase( WorkingDirectory = Path.GetDirectoryName(logFilePath)!, }; + // Globalization data will not be used, even if available + startInfo.Environment["DOTNET_SYSTEM_GLOBALIZATION_INVARIANT"] = "true"; + foreach (KeyValuePair pair in testEnvironmentVariables) { startInfo.Environment[pair.Key] = pair.Value;