[Lldb-commits] [lldb] 7dd76cc - [LLDB] Skip TestExitDuringExpression on aarch64/linux buildbot

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 19 03:31:41 PDT 2021


Author: Muhammad Omair Javaid
Date: 2021-03-19T15:30:10+05:00
New Revision: 7dd76cccca02ee59588647f2d97f1b554c48f580

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

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

TestExitDuringExpression test_exit_before_one_thread_unwind fails
sporadically on both Arm and AArch64 linux buildbots.
This seems like a thread timing issue. I am 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 4ee65c85e8f1..dafc0a967605 100644
--- a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
+++ b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
@@ -15,7 +15,7 @@ class TestExitDuringExpression(TestBase):
     NO_DEBUG_INFO_TESTCASE = True
 
     @skipIfWindows
-    @skipIf(oslist=["linux"], archs=["arm"], bugnumber="llvm.org/pr48414")
+    @skipIf(oslist=["linux"], archs=["arm", "aarch64"], bugnumber="llvm.org/pr48414")
     @expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr48414")
     @expectedFailureNetBSD
     def test_exit_before_one_thread_unwind(self):


        


More information about the lldb-commits mailing list