if section_type == "SHT_RELA":
assert "SHF_INFO_LINK" in flags, flags
assert not section["Symbols"]
- value, base = group.symbols[section["Info"]]
+ maybe_symbol = group.symbols.get(section["Info"])
+ if maybe_symbol is None:
+ # These are relocations for a section we're not emitting. Skip:
+ return
+ value, base = maybe_symbol
if value is _stencils.HoleValue.CODE:
stencil = group.code
else:
test.test_pathlib.test_pathlib.PathSubclassTest.test_is_mount_root
test.test_pathlib.test_pathlib.PathTest.test_is_mount_root
test.test_pathlib.test_pathlib.PosixPathTest.test_is_mount_root
+test.test_posix.PosixTester.test_fexecve
test.test_posix.TestPosixSpawn.test_close_file
test.test_posix.TestPosixSpawnP.test_close_file
test.test_posixpath.PosixPathTest.test_ismount