[Lldb-commits] [lldb] 3dc858f - [LLDB] Skip TestIOHandlerPythonREPLSigint.py on Arm/Linux

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 14 02:47:07 PST 2022


Author: Muhammad Omair Javaid
Date: 2022-01-14T15:46:54+05:00
New Revision: 3dc858f9847d1c2dc02e92ad703060b1bfa90ad0

URL: https://github.com/llvm/llvm-project/commit/3dc858f9847d1c2dc02e92ad703060b1bfa90ad0
DIFF: https://github.com/llvm/llvm-project/commit/3dc858f9847d1c2dc02e92ad703060b1bfa90ad0.diff

LOG: [LLDB] Skip TestIOHandlerPythonREPLSigint.py on Arm/Linux

TestIOHandlerPythonREPLSigint.py is failing on Arm/Linux buildbot. I am
marking it as skip for now.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/iohandler/sigint/TestIOHandlerPythonREPLSigint.py b/lldb/test/API/iohandler/sigint/TestIOHandlerPythonREPLSigint.py
index a1a27c2baded8..20d18ca974744 100644
--- a/lldb/test/API/iohandler/sigint/TestIOHandlerPythonREPLSigint.py
+++ b/lldb/test/API/iohandler/sigint/TestIOHandlerPythonREPLSigint.py
@@ -25,6 +25,7 @@ def start_python_repl(self):
     # under ASAN on a loaded machine..
     @skipIfAsan
     @skipIfWindows
+    @skipIf(oslist=["linux"], archs=["arm"])
     def test_while_evaluating_code(self):
         """ Tests SIGINT handling while Python code is being evaluated."""
         self.start_python_repl()


        


More information about the lldb-commits mailing list