[Lldb-commits] [lldb] r322340 - Skip TestFunctionTemplateParameterPack.py, which unexpectedly asserts (PR35920)

Vedant Kumar via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 11 17:23:53 PST 2018


Author: vedantk
Date: Thu Jan 11 17:23:52 2018
New Revision: 322340

URL: http://llvm.org/viewvc/llvm-project?rev=322340&view=rev
Log:
Skip TestFunctionTemplateParameterPack.py, which unexpectedly asserts (PR35920)

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.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py?rev=322340&r1=322339&r2=322340&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py Thu Jan 11 17:23:52 2018
@@ -1,6 +1,12 @@
 from lldbsuite.test import lldbinline
 from lldbsuite.test import decorators
 
+# 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.expectedFailureAll(bugnumber="rdar://problem/32096064")])
+        decorators.skipIf])




More information about the lldb-commits mailing list