[Lldb-commits] [lldb] c103eac - [LLDB] Skip TestJobControl.py AArch64/Arm Linux

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Fri Apr 1 01:59:08 PDT 2022


Author: Muhammad Omair Javaid
Date: 2022-04-01T13:58:20+05:00
New Revision: c103eac9d8596cf154ccf5249f5c919badd831d6

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

LOG: [LLDB] Skip TestJobControl.py AArch64/Arm Linux

TestJobControl.py is randomly failing on AArch64/Arm Linux buildbots.
I am marking it as skipped to make buildbot stable.

Added: 
    

Modified: 
    lldb/test/API/driver/job_control/TestJobControl.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/driver/job_control/TestJobControl.py b/lldb/test/API/driver/job_control/TestJobControl.py
index 4faaaf0a9edca..8afa65ac3b271 100644
--- a/lldb/test/API/driver/job_control/TestJobControl.py
+++ b/lldb/test/API/driver/job_control/TestJobControl.py
@@ -10,7 +10,8 @@
 class JobControlTest(PExpectTest):
 
     mydir = TestBase.compute_mydir(__file__)
-
+    
+    @skipIf(oslist=["linux"], archs=["arm", "aarch64"])
     def test_job_control(self):
         def post_spawn():
             self.child.expect("PID=([0-9]+)")


        


More information about the lldb-commits mailing list