-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Closed
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Milestone
Description
The environment clearing done here:
runtime/src/libraries/System.Memory/tests/Span/StringSearchValues.cs
Lines 554 to 563 in 4039b45
private static void RunUsingInvariantCulture(Action action) | |
{ | |
Assert.True(CanTestInvariantCulture); | |
var psi = new ProcessStartInfo(); | |
psi.Environment.Clear(); | |
psi.Environment.Add("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT", "true"); | |
RemoteExecutor.Invoke(action, new RemoteInvokeOptions { StartInfo = psi, TimeOut = 10 * 60 * 1000 }).Dispose(); | |
} |
(and likely elsewhere) makes impossible to tunnel DOTNET
options through the test layers to enable various JIT diagnostics and debugging techniques.
cc @MihaZupan @dotnet/jit-contrib
Metadata
Metadata
Assignees
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI