File tree 1 file changed +14
-14
lines changed
libafl_qemu/librasan/asan/tests
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -148,50 +148,50 @@ mod tests {
148
148
} ;
149
149
}
150
150
151
- define_test_function ! ( test_arm1 , 0xdeadface ) ;
152
- define_test_function ! ( test_arm2 , 0xd00df00d ) ;
153
- define_test_function ! ( test_arm3 , 0xfeeddeaf ) ;
151
+ define_test_function ! ( arm_patch_target , 0xdeadface ) ;
152
+ define_test_function ! ( patched_arm_to_arm , 0xd00df00d ) ;
153
+ define_test_function ! ( patched_arm_to_thumb , 0xfeeddeaf ) ;
154
154
define_test_function ! (
155
155
target_feature( enable = "thumb-mode" ) ,
156
- test_thumb1 ,
156
+ thumb_patch_target ,
157
157
0xcafebabe
158
158
) ;
159
159
define_test_function ! (
160
160
target_feature( enable = "thumb-mode" ) ,
161
- test_thumb2 ,
161
+ patched_thumb_to_thumb ,
162
162
0xbeeffade
163
163
) ;
164
164
define_test_function ! (
165
165
target_feature( enable = "thumb-mode" ) ,
166
- test_thumb3 ,
166
+ patched_thumb_to_arm ,
167
167
0xdeedcede
168
168
) ;
169
169
170
170
define_test ! (
171
171
test_patch_arm_to_arm,
172
- test_arm2 ,
173
- test_arm1 ,
172
+ patched_arm_to_arm ,
173
+ arm_patch_target ,
174
174
0xd00df00d ,
175
175
0xdeadface
176
176
) ;
177
177
define_test ! (
178
178
test_patch_arm_to_thumb,
179
- test_arm3 ,
180
- test_thumb1 ,
179
+ patched_arm_to_thumb ,
180
+ thumb_patch_target ,
181
181
0xfeeddeaf ,
182
182
0xcafebabe
183
183
) ;
184
184
define_test ! (
185
185
test_patch_thumb_to_arm,
186
- test_thumb3 ,
187
- test_arm1 ,
186
+ patched_thumb_to_arm ,
187
+ arm_patch_target ,
188
188
0xdeedcede ,
189
189
0xdeadface
190
190
) ;
191
191
define_test ! (
192
192
test_patch_thumb_to_thumb,
193
- test_thumb2 ,
194
- test_thumb1 ,
193
+ patched_thumb_to_thumb ,
194
+ thumb_patch_target ,
195
195
0xbeeffade ,
196
196
0xcafebabe
197
197
) ;
You can’t perform that action at this time.
0 commit comments