mirror of https://github.com/xemu-project/xemu.git
tests/tcg: Disable filename test for info proc mappings
This test fails when host page size != guest page size,
because qemu may not be able to directly map the file.
Fixes: a634148269
("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>
This commit is contained in:
parent
a05cee93f4
commit
1b65895ddd
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue