tests/tcg: Disable filename test for info proc mappings
authorRichard Henderson <richard.henderson@linaro.org>
Tue, 8 Aug 2023 23:41:20 +0000 (23:41 +0000)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 9 Aug 2023 14:19:41 +0000 (07:19 -0700)
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>
tests/tcg/multiarch/gdbstub/test-proc-mappings.py

index 7b596ac21bb9bb78a01eb44a75eabc1ecf2b47c9..5e3e5a2fb7830d7930ead3e0cb150d286f7e9435 100644 (file)
@@ -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():