Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix edk2 coverage build due to changed definition of EFI_PCI_IO_PROTOCOL_IO_MEM #12

Merged
merged 2 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -813,9 +813,9 @@ EFIAPI
PciIoRead (
IN EFI_PCI_IO_PROTOCOL *PciIo,
IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
IN UINT16 Offset,
IN UINT16 Count,
IN OUT UINT8 *Buffer
IN UINT32 Offset,
IN UINTN Count,
IN OUT VOID *Buffer
) {
UINT16 Len = 0;

Expand Down
4 changes: 2 additions & 2 deletions HBFA/UefiHostTestTools/RunLibFuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ def main():
" should start with {}.".format(HBFA_PATH))
os._exit(0)
elif not os.path.exists(os.path.join(HBFA_PATH, args.ModuleFile)):
print("ModuleFile path: {}".format(os.path.abspath(args.InputSeed))
+ " does not exist or is not in the relative path for HBFA")
print("ModuleFile path: {}".format(args.ModuleFile)
+ " does not exist or is not in the relative path for HBFA: {}".format(os.path.abspath(HBFA_PATH)))
os._exit(0)
else:
ModuleFilePath = args.ModuleFile
Expand Down