From 89d0611fb2ff0e11cda3302317569ad0900521cc Mon Sep 17 00:00:00 2001 From: Aleksey Kliger Date: Mon, 30 Sep 2024 13:31:02 -0400 Subject: [PATCH] remove fixed fixme --- src/native/managed/cdacreader/tests/NibbleMapTests.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/native/managed/cdacreader/tests/NibbleMapTests.cs b/src/native/managed/cdacreader/tests/NibbleMapTests.cs index f75f3048cd97df..fa8a0d31e90c22 100644 --- a/src/native/managed/cdacreader/tests/NibbleMapTests.cs +++ b/src/native/managed/cdacreader/tests/NibbleMapTests.cs @@ -175,8 +175,6 @@ public void NibbleMapOneItemLookupOk(MockTarget.Architecture arch) methodCode = map.FindMethodCode(mapBase, mapStart, inputPC.Value + 0x100u); Assert.Equal(inputPC.Value, methodCode.Value); -#if true // FIXME: for expected 5f5f0200, found 5f5f0120 input address 5f5f0300 - // interestingly, all addresses after the code chunk should also return the beginning of the method // we don't track how long the method is, so we can't tell if we're past the end for (TargetCodePointer ptr = inputPC + (uint)codeSize; ptr < MapEnd; ptr++) @@ -184,7 +182,6 @@ public void NibbleMapOneItemLookupOk(MockTarget.Architecture arch) methodCode = map.FindMethodCode(mapBase, mapStart, ptr); Assert.Equal(inputPC.Value, methodCode); } -#endif }