[Clang] Prevent `mlink-builtin-bitcode` from internalizing the RPC client (#118661)
[llvm-project.git] / lldb / test / API / commands / expression / function_template_specialization_temp_args / TestFunctionTemplateSpecializationTempArgs.py
blob3e8dc8b1d446e934e1ca74ed85e01d6aa95a6184
1 import lldb
2 from lldbsuite.test.decorators import *
3 from lldbsuite.test.lldbtest import *
4 from lldbsuite.test import lldbutil
7 class TestFunctionTemplateSpecializationTempArgs(TestBase):
8 @skipIf(oslist=["windows"], archs=["aarch64"])
9 def test_function_template_specialization_temp_args(self):
10 self.build()
12 (self.target, self.process, _, bkpt) = lldbutil.run_to_source_breakpoint(
13 self, "// break here", lldb.SBFileSpec("main.cpp", False)
16 self.expect_expr("p0", result_type="VType", result_children=[])