We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c3dca commit 9568601Copy full SHA for 9568601
lldb/test/API/python_api/value/TestValueAPI.py
@@ -210,7 +210,7 @@ def test(self):
210
# Check that hex value printing works as expected.
211
self.assertEqual(
212
frame0.FindVariable("fixed_int_ptr").GetValue(),
213
- "0x00000000000000aa",
+ "0x000000aa" if target.addr_size == 4 else "0x00000000000000aa",
214
)
215
self.runCmd("settings set target.show-hex-variable-values-with-leading-zeroes false")
216
0 commit comments