Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git] / lldb / test / API / python_api / default-constructor / sb_filespec.py
blob4ab5c49c37eb5af4e8770f7b135aa56f3e53f912
1 """
2 Fuzz tests an object after the default construction to make sure it does not crash lldb.
3 """
5 import lldb
8 def fuzz_obj(obj):
9 obj.Exists()
10 obj.ResolveExecutableLocation()
11 obj.GetFilename()
12 obj.GetDirectory()
13 obj.GetPath(None, 0)
14 obj.GetDescription(lldb.SBStream())