Temporarily disable test:

test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py

It fails on Mac OS; apparently a VarDecl 'void *&C' is implicitly
declared there, making the class template name C ambiguous.

llvm-svn: 354185
This commit is contained in:
Richard Smith 2019-02-16 00:13:26 +00:00
parent 9efdd7ac5e
commit 81086e2a65
1 changed files with 4 additions and 1 deletions

View File

@ -4,4 +4,7 @@ from lldbsuite.test import decorators
lldbinline.MakeInlineTest(
__file__, globals(), [
decorators.expectedFailureAll(
compiler="gcc")])
compiler="gcc"),
decorators.expectedFailureAll(
oslist=['ios', 'watchos', 'tvos', 'bridgeos'],
bugnumber="rdar://problem/48128064: class template declaration unexpectedly shadowed by VarDecl on MacOS")])