[Lldb-commits] [lldb] Make only one function that needs to be implemented when searching for types (PR #74786)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 11 06:27:37 PST 2023
================
@@ -12,33 +12,32 @@ class UniqueTypesTestCase4(TestBase):
def do_test(self, debug_flags):
"""Test that we display the correct template instantiation."""
self.build(dictionary=debug_flags)
+ exe = self.getBuildArtifact("a.out")
+ print(exe)
lldbutil.run_to_source_breakpoint(
self, "// Set breakpoint here", lldb.SBFileSpec("main.cpp")
)
# FIXME: these should successfully print the values
self.expect(
- "expression ns::Foo<double>::value", substrs=["no member named"], error=True
+ "print ns::Foo<double>::value", substrs=["no template named 'Foo' in namespace 'ns'"], error=True
----------------
Michael137 wrote:
why change these to `print`?
https://github.com/llvm/llvm-project/pull/74786
More information about the lldb-commits
mailing list