summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api/default-constructor
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/default-constructor')
-rw-r--r--lldb/test/python_api/default-constructor/sb_inputreader.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_inputreader.py b/lldb/test/python_api/default-constructor/sb_inputreader.py
index 9b94a12a7e3..6996059dc51 100644
--- a/lldb/test/python_api/default-constructor/sb_inputreader.py
+++ b/lldb/test/python_api/default-constructor/sb_inputreader.py
@@ -6,7 +6,10 @@ import sys
import lldb
def fuzz_obj(obj):
- obj.Initialize(lldb.SBDebugger.Create(), None, None, 0, "$", "^", True)
+ try:
+ obj.Initialize(lldb.SBDebugger.Create(), None, 0, "$", "^", True)
+ except Exception:
+ pass
obj.IsActive()
obj.IsDone()
obj.SetIsDone(True)
OpenPOWER on IntegriCloud