aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-08-08 23:41:20 +0000
committerRichard Henderson <richard.henderson@linaro.org>2023-08-09 07:19:41 -0700
commit1b65895ddd9bb3898458ec622f5550173f9a8550 (patch)
treeadbfcf9d5ab9fe7c5d6cefddf80eee12cd6dec56 /tests/tcg
parenta05cee93f4052179c036789c5a246948dcc362f0 (diff)
downloadqemu-1b65895ddd9bb3898458ec622f5550173f9a8550.zip
qemu-1b65895ddd9bb3898458ec622f5550173f9a8550.tar.gz
qemu-1b65895ddd9bb3898458ec622f5550173f9a8550.tar.bz2
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: a6341482695 ("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>
Diffstat (limited to 'tests/tcg')
-rw-r--r--tests/tcg/multiarch/gdbstub/test-proc-mappings.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tcg/multiarch/gdbstub/test-proc-mappings.py b/tests/tcg/multiarch/gdbstub/test-proc-mappings.py
index 7b596ac..5e3e5a2 100644
--- a/tests/tcg/multiarch/gdbstub/test-proc-mappings.py
+++ b/tests/tcg/multiarch/gdbstub/test-proc-mappings.py
@@ -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():