[Lldb-commits] [lldb] r343695 - Skip test with older versions of clang
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 3 09:24:14 PDT 2018
Author: adrian
Date: Wed Oct 3 09:24:14 2018
New Revision: 343695
URL: http://llvm.org/viewvc/llvm-project?rev=343695&view=rev
Log:
Skip test with older versions of clang
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py?rev=343695&r1=343694&r2=343695&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py Wed Oct 3 09:24:14 2018
@@ -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')
More information about the lldb-commits
mailing list