Skip to content

Commit

Permalink
Fix RunLibFuzzer error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamas K Lengyel committed May 8, 2024
1 parent 26e459d commit eaa0b75
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit eaa0b75

Please sign in to comment.