diff --git a/src/tests/tracing/eventpipe/randomizedallocationsampling/allocationsampling.cs b/src/tests/tracing/eventpipe/randomizedallocationsampling/allocationsampling.cs index db6b37aa44f658..1fa49cdffb2e6b 100644 --- a/src/tests/tracing/eventpipe/randomizedallocationsampling/allocationsampling.cs +++ b/src/tests/tracing/eventpipe/randomizedallocationsampling/allocationsampling.cs @@ -69,7 +69,10 @@ public static int TestEntryPoint() AllocationSampledData payload = new AllocationSampledData(eventData, source.PointerSize); // uncomment to see the allocation events payload //Logger.logger.Log($"{payload.AllocationKind} | ({payload.ObjectSize}) {payload.TypeName} = 0x{payload.Address}"); - if (payload.TypeName == "Tracing.Tests.Object128") + if (payload.TypeName == "Tracing.Tests.Object128" || + (payload.TypeName == "NULL" && payload.ObjectSize == 128 + 16)) // NativeAOT doesn't report type names but we can use the size as a good proxy + // A real profiler would resolve the TypeID from PDBs but replicating that would + // make the test more complicated { Object128Count++; }