From 1adf3ac4605234d087d046a06e5a0c921998ea00 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 18 Mar 2015 20:45:28 +0000 Subject: [PATCH] Don't load register data from memory. llvm-svn: 232668 --- .../plugins/python_os_plugin/operating_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 958330fdccc2..536092e40b38 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