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 7fe3b6a commit 2350fbcCopy full SHA for 2350fbc
lldb/test/API/lang/cpp/namespace/TestNamespaceLookup.py
@@ -167,7 +167,10 @@ def test_scope_lookup_with_run_command(self):
167
self.runToBkpt("continue")
168
# FIXME: In DWARF 5 with dsyms, the ordering of functions is slightly
169
# different, which also hits the same issues mentioned previously.
170
- if int(lldbplatformutil.getDwarfVersion()) <= 4 or self.getDebugInfo() == "dwarf":
+ if (
171
+ int(lldbplatformutil.getDwarfVersion()) <= 4
172
+ or self.getDebugInfo() == "dwarf"
173
+ ):
174
self.expect_expr("func()", result_type="int", result_value="2")
175
176
# Continue to BP_ns_scope at ns scope
0 commit comments