summaryrefslogtreecommitdiff
path: root/lldb/test/python_api/default-constructor/sb_valuelist.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_valuelist.py')
-rw-r--r--lldb/test/python_api/default-constructor/sb_valuelist.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_valuelist.py b/lldb/test/python_api/default-constructor/sb_valuelist.py
deleted file mode 100644
index 4e41e11f29ed..000000000000
--- a/lldb/test/python_api/default-constructor/sb_valuelist.py
+++ /dev/null
@@ -1,14 +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.Append(lldb.SBValue())
- obj.GetSize()
- obj.GetValueAtIndex(100)
- obj.FindValueObjectByUID(200)
- for val in obj:
- print val