[Lldb-commits] [lldb] d0ac84b - [lldb][test] Fix XML register info test (#209124)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 13 02:43:35 PDT 2026
Author: David Spickett
Date: 2026-07-13T10:43:30+01:00
New Revision: d0ac84b54b90c03f0ba54b7f1b75b43941d7a6b1
URL: https://github.com/llvm/llvm-project/commit/d0ac84b54b90c03f0ba54b7f1b75b43941d7a6b1
DIFF: https://github.com/llvm/llvm-project/commit/d0ac84b54b90c03f0ba54b7f1b75b43941d7a6b1.diff
LOG: [lldb][test] Fix XML register info test (#209124)
Missed by #208838, which is a follow up to #188049 which changed the
alignment rules.
Some of these tests have incorrect outputs now
and I will fix that later. For now at least
they pass again.
XML related tests are not being run in CI,
which I will also address later.
Added:
Modified:
lldb/test/API/functionalities/gdb_remote_client/TestXMLRegisterFlags.py
Removed:
################################################################################
diff --git a/lldb/test/API/functionalities/gdb_remote_client/TestXMLRegisterFlags.py b/lldb/test/API/functionalities/gdb_remote_client/TestXMLRegisterFlags.py
index 972176a74640c..061090e9b6907 100644
--- a/lldb/test/API/functionalities/gdb_remote_client/TestXMLRegisterFlags.py
+++ b/lldb/test/API/functionalities/gdb_remote_client/TestXMLRegisterFlags.py
@@ -237,10 +237,10 @@ def test_big_endian_target_order(self):
self.expect(
"register read r0 fpc",
substrs=[
- " r0 = 0x77777777eeeeeeee\n"
- " = (msb = 0, lsb = 0)\n"
- " fpc = 0x7777eeee\n"
- " = (msb = 0, lsb = 0)\n"
+ " r0 = 0x77777777eeeeeeee\n"
+ " = (msb = 0, lsb = 0)\n"
+ " fpc = 0x7777eeee\n"
+ " = (msb = 0, lsb = 0)\n"
],
)
More information about the lldb-commits
mailing list