================ @@ -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 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits