diff options
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_instructionlist.py')
| -rw-r--r-- | lldb/test/python_api/default-constructor/sb_instructionlist.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_instructionlist.py b/lldb/test/python_api/default-constructor/sb_instructionlist.py deleted file mode 100644 index 9674af824460..000000000000 --- a/lldb/test/python_api/default-constructor/sb_instructionlist.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.GetSize() - obj.GetInstructionAtIndex(0xffffffff) - obj.AppendInstruction(lldb.SBInstruction()) - obj.Print(None) - obj.GetDescription(lldb.SBStream()) - obj.DumpEmulationForAllInstructions("armv7") - obj.Clear() - for inst in obj: - print inst |
