diff options
| author | Greg Clayton <gclayton@apple.com> | 2015-03-18 20:45:28 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2015-03-18 20:45:28 +0000 |
| commit | 1adf3ac4605234d087d046a06e5a0c921998ea00 (patch) | |
| tree | 5f3a88103112fb2bc73aa7e6c5eb94c4e0dce1f7 /lldb/test/functionalities/plugins/python_os_plugin/operating_system.py | |
| parent | 5ac4e120be475236136d1850490aec2dbf149f4b (diff) | |
| download | bcm5719-llvm-1adf3ac4605234d087d046a06e5a0c921998ea00.tar.gz bcm5719-llvm-1adf3ac4605234d087d046a06e5a0c921998ea00.zip | |
Don't load register data from memory.
llvm-svn: 232668
Diffstat (limited to 'lldb/test/functionalities/plugins/python_os_plugin/operating_system.py')
| -rw-r--r-- | lldb/test/functionalities/plugins/python_os_plugin/operating_system.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/plugins/python_os_plugin/operating_system.py b/lldb/test/functionalities/plugins/python_os_plugin/operating_system.py index 958330fdccc..536092e40b3 100644 --- a/lldb/test/functionalities/plugins/python_os_plugin/operating_system.py +++ b/lldb/test/functionalities/plugins/python_os_plugin/operating_system.py @@ -52,7 +52,7 @@ class OperatingSystemPlugIn(object): self.threads = [ { 'tid' : 0x111111111, 'name' : 'one' , 'queue' : 'queue1', 'state' : 'stopped', 'stop_reason' : 'breakpoint'}, { 'tid' : 0x222222222, 'name' : 'two' , 'queue' : 'queue2', 'state' : 'stopped', 'stop_reason' : 'none' }, - { 'tid' : 0x333333333, 'name' : 'three', 'queue' : 'queue3', 'state' : 'stopped', 'stop_reason' : 'trace' , 'register_data_addr' : 0x100000000 } + { 'tid' : 0x333333333, 'name' : 'three', 'queue' : 'queue3', 'state' : 'stopped', 'stop_reason' : 'trace' } ] return self.threads |

