[Lldb-commits] [lldb] 0df28ac - [LLDB] Skip TestExitDuringExpression on arm/linux buildbot
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 15 04:04:20 PDT 2021
Author: Muhammad Omair Javaid
Date: 2021-03-15T16:03:06+05:00
New Revision: 0df28acffb5637ffb9abc908ef638f29389e0012
URL: https://github.com/llvm/llvm-project/commit/0df28acffb5637ffb9abc908ef638f29389e0012
DIFF: https://github.com/llvm/llvm-project/commit/0df28acffb5637ffb9abc908ef638f29389e0012.diff
LOG: [LLDB] Skip TestExitDuringExpression on arm/linux buildbot
TestExitDuringExpression test_exit_before_one_thread_unwind fails
sporadically on arm/linux. 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 4c365b99a244..4ee65c85e8f1 100644
--- a/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
+++ b/lldb/test/API/functionalities/thread/exit_during_expression/TestExitDuringExpression.py
@@ -15,6 +15,7 @@ class TestExitDuringExpression(TestBase):
NO_DEBUG_INFO_TESTCASE = True
@skipIfWindows
+ @skipIf(oslist=["linux"], archs=["arm"], 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