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')


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to