[Lldb-commits] [lldb] 28058d4 - [LLDB] Skip TestExitDuringExpression on aarch64/linux buildbot

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 22 04:22:59 PDT 2021


Author: Muhammad Omair Javaid
Date: 2021-06-22T16:22:48+05:00
New Revision: 28058d4cd10dac8129a5d5760597e832ea6eef81

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

LOG: [LLDB] Skip TestExitDuringExpression on aarch64/linux buildbot

TestExitDuringExpression test_exit_before_one_thread_no_unwind fails
sporadically on both Arm and AArch64 linux buildbots. This seems like
manifesting itself on a fully loaded machine. I have not found a reliable
timeout value so marking it skip for now.

Added: 
    

Modified: 
    lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
index dafc0a967605c..97bf151b60a74 100644
--- a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
+++ b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
@@ -23,6 +23,7 @@ def test_exit_before_one_thread_unwind(self):
         self.exiting_expression_test(True, True)
 
     @skipIfWindows
+    @skipIf(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr48414")
     @expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48414")
     @expectedFailureNetBSD
     def test_exit_before_one_thread_no_unwind(self):
@@ -109,4 +110,3 @@ def exiting_expression_test(self, before_one_thread_timeout , unwind):
         ret_val_value = ret_val.GetValueAsSigned(error)
         self.assertTrue(error.Success(), "Got ret_val's value")
         self.assertEqual(ret_val_value, 10, "We put the right value in ret_val")
-


        


More information about the lldb-commits mailing list