Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / python_api / default-constructor / sb_process_info.py
blob0c4562f9be92a9989812526824ed271e73ff4a69
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.IsValid()
10 obj.GetName()
11 obj.GetExecutableFile()
12 obj.GetProcessID()
13 obj.GetUserID()
14 obj.GetGroupID()
15 obj.UserIDIsValid()
16 obj.GroupIDIsValid()
17 obj.GetEffectiveUserID()
18 obj.GetEffectiveGroupID()
19 obj.EffectiveUserIDIsValid()
20 obj.EffectiveGroupIDIsValid()
21 obj.GetParentProcessID()