[Lldb-commits] [lldb] r354204 - [testsuite] Skip this test correctly also on macOS.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Sat Feb 16 09:16:53 PST 2019


Author: davide
Date: Sat Feb 16 09:16:53 2019
New Revision: 354204

URL: http://llvm.org/viewvc/llvm-project?rev=354204&view=rev
Log:
[testsuite] Skip this test correctly also on macOS.

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

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py?rev=354204&r1=354203&r2=354204&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py Sat Feb 16 09:16:53 2019
@@ -5,6 +5,5 @@ lldbinline.MakeInlineTest(
     __file__, globals(), [
         decorators.expectedFailureAll(
             compiler="gcc"),
-        decorators.expectedFailureAll(
-            oslist=['ios', 'watchos', 'tvos', 'bridgeos'],
-            bugnumber="rdar://problem/48128064: class template declaration unexpectedly shadowed by VarDecl on MacOS")])
+        # rdar://problem/48128064
+        decorators.skipIfDarwin])




More information about the lldb-commits mailing list