summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2019-02-16 00:13:26 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2019-02-16 00:13:26 +0000
commit81086e2a6531dc0ffb2126e62c267fdee8f1ff29 (patch)
treecd1638959560564f501175054aa6bf23ce51587b /lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
parent9efdd7ac5e914d3c9fa1ef33781acea43d98c913 (diff)
downloadbcm5719-llvm-81086e2a6531dc0ffb2126e62c267fdee8f1ff29.tar.gz
bcm5719-llvm-81086e2a6531dc0ffb2126e62c267fdee8f1ff29.zip
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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
index 7e67f73b709..f424934e703 100644
--- a/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
+++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
@@ -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")])
OpenPOWER on IntegriCloud