Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Nov 28, 2024
1 parent aa50acf commit 20b8517
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/Ultra.Tests/FirefoxProfilerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ private static FirefoxProfiler.Profile CreateProfile()
profile.Meta.SampleUnits.EventDelay = "ms";
profile.Meta.SampleUnits.ThreadCPUDelta = "ns";

profile.Meta.Platform = Environment.OSVersion.ToString(); // "Windows";
profile.Meta.Oscpu = RuntimeInformation.ProcessArchitecture.ToString();
profile.Meta.LogicalCPUs = Environment.ProcessorCount;
profile.Meta.Platform = "Windows";
profile.Meta.Oscpu = "AMD Ryzen 9 5950X 16-Core Processor";
profile.Meta.LogicalCPUs = 16;

// We don't have access to physical CPUs
//profile.Meta.PhysicalCPUs = Environment.ProcessorCount / 2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"stackwalk": 1,
"version": 29,
"preprocessedProfileVersion": 50,
"oscpu": "X64",
"platform": "Microsoft Windows NT 10.0.22631.0",
"logicalCPUs": 32,
"oscpu": "AMD Ryzen 9 5950X 16-Core Processor",
"platform": "Windows",
"logicalCPUs": 16,
"symbolicated": true,
"markerSchema": [
{
Expand Down

0 comments on commit 20b8517

Please sign in to comment.