diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-10-03 16:24:14 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-10-03 16:24:14 +0000 |
commit | 1c8ed2081f9d7a5c53a68868ffde1f3aa815e0b5 (patch) | |
tree | af3851f1c4f5c35ecbf38cc59d0a18484eddf47e /lldb/packages/Python/lldbsuite/test | |
parent | 306f14ceb8d1ef04407147b9f932095689b1eb59 (diff) | |
download | bcm5719-llvm-1c8ed2081f9d7a5c53a68868ffde1f3aa815e0b5.tar.gz bcm5719-llvm-1c8ed2081f9d7a5c53a68868ffde1f3aa815e0b5.zip |
Skip test with older versions of clang
llvm-svn: 343695
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py b/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py index 7a46877488f..d3afacca72f 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py @@ -16,6 +16,7 @@ class targetCommandTestCase(TestBase): @skipUnlessDarwin @skipIfDarwinEmbedded # needs x86_64 @skipIf(debug_info="gmodules") # not relevant + @skipIf(compiler="clang", compiler_version=['<', '7.0']) def testTargetVarExpr(self): self.build() lldbutil.run_to_name_breakpoint(self, 'main') |