From fa274694bcd3c30741a7f1701c10547d63acf989 Mon Sep 17 00:00:00 2001 From: mriehm Date: Tue, 24 Jun 2025 21:48:49 -0500 Subject: [PATCH] Lowercase programName in NativeMemoryLogParser.cs --- .../Tracing/NativeMemoryLogParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BenchmarkDotNet.Diagnostics.Windows/Tracing/NativeMemoryLogParser.cs b/src/BenchmarkDotNet.Diagnostics.Windows/Tracing/NativeMemoryLogParser.cs index 4d8b79c3d1..295ea1d46b 100644 --- a/src/BenchmarkDotNet.Diagnostics.Windows/Tracing/NativeMemoryLogParser.cs +++ b/src/BenchmarkDotNet.Diagnostics.Windows/Tracing/NativeMemoryLogParser.cs @@ -38,7 +38,7 @@ public NativeMemoryLogParser(string etlFilePath, BenchmarkCase benchmarkCase, IL this.benchmarkCase = benchmarkCase; this.logger = logger; - moduleName = programName; + moduleName = programName.ToLowerInvariant(); functionNames = new[] { nameof(EngineParameters.WorkloadActionUnroll),