Author: Michael Buch Date: 2026-01-19T13:27:27Z New Revision: 42764ec59bc41979663a291fec1c5afdcf0b3fe8
URL: https://github.com/llvm/llvm-project/commit/42764ec59bc41979663a291fec1c5afdcf0b3fe8 DIFF: https://github.com/llvm/llvm-project/commit/42764ec59bc41979663a291fec1c5afdcf0b3fe8.diff LOG: [lldb][test] TestFunctionTemplateParameterPack.py: XFAIL instead of skip This test doesn't trigger an assertion on top-of-tree. Turn this into an XFAIL instead. Found this test because I'm working on improving parameter pack support in the expression evaluator. Added: Modified: lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py Removed: ################################################################################ diff --git a/lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py b/lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py index cd72ece4c9e66..30a51020bb10c 100644 --- a/lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py +++ b/lldb/test/API/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py @@ -3,8 +3,5 @@ # https://bugs.llvm.org/show_bug.cgi?id=35920 # This test stresses expression evaluation support for template functions. -# Currently the support is rudimentary, and running this test causes assertion -# failures in clang. This test cannot be XFAIL'ed because the test harness -# treats assertion failures as unexpected events. For now, the test must be -# skipped. -lldbinline.MakeInlineTest(__file__, globals(), [decorators.skipIf]) +# This is currently not fully supported. Hence XFAIL this test. +lldbinline.MakeInlineTest(__file__, globals(), [decorators.expectedFailureAll]) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
