[Lldb-commits] [lldb] r283843 - Fixing the bug number for darwin on this failure.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 10 18:53:44 PDT 2016


Author: jingham
Date: Mon Oct 10 20:53:43 2016
New Revision: 283843

URL: http://llvm.org/viewvc/llvm-project?rev=283843&view=rev
Log:
Fixing the bug number for darwin on this failure.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py?rev=283843&r1=283842&r2=283843&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py Mon Oct 10 20:53:43 2016
@@ -56,7 +56,9 @@ class StaticVariableTestCase(TestBase):
                 VARIABLES_DISPLAYED_CORRECTLY,
                 startstr="(int) A::g_points[1].x = 11")
 
-    @expectedFailureDarwin(9980907)
+    @expectedFailureAll(
+        oslist=lldbplatformutil.getDarwinOSTriples(),
+        bugnumber="<rdar://problem/28706946>")
     @expectedFailureAll(
         compiler=[
             "clang",




More information about the lldb-commits mailing list