Skip to content

Commit 9389b05

Browse files
author
walter erquinigo
committed
[lldb] Fix the TestValueAPI test
This test was reported as failing by https://lab.llvm.org/buildbot/#/builders/68/builds/60172. The fix is very simple. We need to invoke the correct setting.
1 parent d10ee89 commit 9389b05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/python_api/value/TestValueAPI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def test(self):
212212
frame0.FindVariable("fixed_int_ptr").GetValue(),
213213
"0x00000000000000aa",
214214
)
215-
self.runCmd("settings set target.show-hex-values-with-leading-zeroes false")
215+
self.runCmd("settings set target.show-hex-variable-values-with-leading-zeroes false")
216216
self.assertEqual(
217217
frame0.FindVariable("another_fixed_int_ptr").GetValue(),
218218
"0xaa",

0 commit comments

Comments
 (0)