Skip to content

Commit

Permalink
tests/tcg: Disable filename test for info proc mappings
Browse files Browse the repository at this point in the history
This test fails when host page size != guest page size,
because qemu may not be able to directly map the file.

Fixes: a634148 ("tests/tcg: Add a test for info proc mappings")
Acked-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Aug 9, 2023
1 parent a05cee9 commit 1b65895
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/tcg/multiarch/gdbstub/test-proc-mappings.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def run_test():
return
raise
report(isinstance(mappings, str), "Fetched the mappings from the inferior")
report("/sha1" in mappings, "Found the test binary name in the mappings")
# Broken with host page size > guest page size
# report("/sha1" in mappings, "Found the test binary name in the mappings")


def main():
Expand Down

0 comments on commit 1b65895

Please sign in to comment.