Make reccmp more compatible with debug builds (#674)

This commit is contained in:
MS
2024-03-15 11:17:08 -04:00
committed by GitHub
parent 331aac73f2
commit 5e0e7ab908
4 changed files with 95 additions and 8 deletions

View File

@@ -144,3 +144,9 @@ THUNKS = (
@pytest.mark.parametrize("thunk_ref", THUNKS)
def test_thunks(thunk_ref: Tuple[int, int], binfile: IsleBin):
assert thunk_ref in binfile.thunks
def test_exports(binfile: IsleBin):
assert len(binfile.exports) == 130
assert (0x1003BFB0, b"??0LegoBackgroundColor@@QAE@PBD0@Z") in binfile.exports
assert (0x10091EE0, b"_DllMain@12") in binfile.exports