[Lldb-commits] [lldb] r256257 - skip TestEvents.py on Darwin
Todd Fiala via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 22 09:24:32 PST 2015
Author: tfiala
Date: Tue Dec 22 11:24:31 2015
New Revision: 256257
URL: http://llvm.org/viewvc/llvm-project?rev=256257&view=rev
Log:
skip TestEvents.py on Darwin
This is generating a SIGSEGV somewhere around 1 in 10 runs on OS X.
Skip the whole test to avoid testbot noise until we can get the
SIGSEGV addressed.
Tracking with:
https://llvm.org/bugs/show_bug.cgi?id=25924
Modified:
lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py?rev=256257&r1=256256&r2=256257&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py Tue Dec 22 11:24:31 2015
@@ -12,6 +12,7 @@ import lldb
import lldbsuite.test.lldbutil as lldbutil
from lldbsuite.test.lldbtest import *
+ at skipIfDarwin # llvm.org/pr25924, sometimes generating SIGSEGV
class EventAPITestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
More information about the lldb-commits
mailing list