@@ -117,14 +117,14 @@ def test_save_linux_mini_dump(self):
117
117
expected_number_of_threads = process .GetNumThreads ()
118
118
expected_threads = []
119
119
stacks_to_sp_map = {}
120
- stakcs_to_registers_map = {}
120
+ stacks_to_registers_map = {}
121
121
122
122
for thread_idx in range (process .GetNumThreads ()):
123
123
thread = process .GetThreadAtIndex (thread_idx )
124
124
thread_id = thread .GetThreadID ()
125
125
expected_threads .append (thread_id )
126
126
stacks_to_sp_map [thread_id ] = thread .GetFrameAtIndex (0 ).GetSP ()
127
- stakcs_to_registers_map [thread_id ] = thread .GetFrameAtIndex (
127
+ stacks_to_registers_map [thread_id ] = thread .GetFrameAtIndex (
128
128
0
129
129
).GetRegisters ()
130
130
@@ -138,7 +138,7 @@ def test_save_linux_mini_dump(self):
138
138
expected_modules ,
139
139
expected_threads ,
140
140
stacks_to_sp_map ,
141
- stakcs_to_registers_map ,
141
+ stacks_to_registers_map ,
142
142
)
143
143
144
144
self .runCmd (base_command + " --style=modified-memory '%s'" % (core_dirty ))
@@ -149,7 +149,7 @@ def test_save_linux_mini_dump(self):
149
149
expected_modules ,
150
150
expected_threads ,
151
151
stacks_to_sp_map ,
152
- stakcs_to_registers_map ,
152
+ stacks_to_registers_map ,
153
153
)
154
154
155
155
self .runCmd (base_command + " --style=full '%s'" % (core_full ))
@@ -160,7 +160,7 @@ def test_save_linux_mini_dump(self):
160
160
expected_modules ,
161
161
expected_threads ,
162
162
stacks_to_sp_map ,
163
- stakcs_to_registers_map ,
163
+ stacks_to_registers_map ,
164
164
)
165
165
166
166
options = lldb .SBSaveCoreOptions ()
@@ -178,7 +178,7 @@ def test_save_linux_mini_dump(self):
178
178
expected_modules ,
179
179
expected_threads ,
180
180
stacks_to_sp_map ,
181
- stakcs_to_registers_map ,
181
+ stacks_to_registers_map ,
182
182
)
183
183
184
184
options = lldb .SBSaveCoreOptions ()
@@ -195,7 +195,7 @@ def test_save_linux_mini_dump(self):
195
195
expected_modules ,
196
196
expected_threads ,
197
197
stacks_to_sp_map ,
198
- stakcs_to_registers_map ,
198
+ stacks_to_registers_map ,
199
199
)
200
200
201
201
# Minidump can now save full core files, but they will be huge and
@@ -214,7 +214,7 @@ def test_save_linux_mini_dump(self):
214
214
expected_modules ,
215
215
expected_threads ,
216
216
stacks_to_sp_map ,
217
- stakcs_to_registers_map ,
217
+ stacks_to_registers_map ,
218
218
)
219
219
220
220
self .assertSuccess (process .Kill ())
0 commit comments