diff options
| -rw-r--r-- | lldb/test/python_api/default-constructor/sb_error.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/python_api/default-constructor/sb_error.py b/lldb/test/python_api/default-constructor/sb_error.py index c160f6e39bd..617fab3e61e 100644 --- a/lldb/test/python_api/default-constructor/sb_error.py +++ b/lldb/test/python_api/default-constructor/sb_error.py @@ -15,6 +15,8 @@ def fuzz_obj(obj): obj.SetErrorToErrno() obj.SetErrorToGenericError() obj.SetErrorString("xyz") + obj.SetErrorString(None) obj.SetErrorStringWithFormat("%s!", "error") + obj.SetErrorStringWithFormat(None) obj.GetDescription(lldb.SBStream()) obj.Clear() |

