[Lldb-commits] [lldb] 0bc9372 - Skip test on earlier clang versions

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 8 15:41:07 PDT 2022


Author: Adrian Prantl
Date: 2022-04-08T15:40:57-07:00
New Revision: 0bc9372fa74ad0cd4789b4485bade86570909718

URL: https://github.com/llvm/llvm-project/commit/0bc9372fa74ad0cd4789b4485bade86570909718
DIFF: https://github.com/llvm/llvm-project/commit/0bc9372fa74ad0cd4789b4485bade86570909718.diff

LOG: Skip test on earlier clang versions

Added: 
    

Modified: 
    lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py b/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py
index b1d93b6a30b1c..e4fe77de8f076 100644
--- a/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py
+++ b/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py
@@ -13,6 +13,7 @@ class TestCase(PExpectTest):
 
     mydir = TestBase.compute_mydir(__file__)
 
+    @skipIf(compiler="clang", compiler_version=['<', '11.0'])
     @skipIf(oslist=["linux"], archs=["arm", "aarch64"])
     def test(self):
         self.build(dictionary={"CXX_SOURCES":"cat.cpp"})


        


More information about the lldb-commits mailing list