summaryrefslogtreecommitdiff
path: root/lldb/test/python_api/default-constructor/sb_stringlist.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_stringlist.py')
-rw-r--r--lldb/test/python_api/default-constructor/sb_stringlist.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_stringlist.py b/lldb/test/python_api/default-constructor/sb_stringlist.py
deleted file mode 100644
index 54d669dd6975..000000000000
--- a/lldb/test/python_api/default-constructor/sb_stringlist.py
+++ /dev/null
@@ -1,17 +0,0 @@
-"""
-Fuzz tests an object after the default construction to make sure it does not crash lldb.
-"""
-
-import sys
-import lldb
-
-def fuzz_obj(obj):
- obj.AppendString("another string")
- obj.AppendString(None)
- obj.AppendList(None, 0)
- obj.AppendList(lldb.SBStringList())
- obj.GetSize()
- obj.GetStringAtIndex(0xffffffff)
- obj.Clear()
- for str in obj:
- print str