diff options
| author | iximeow <me@iximeow.net> | 2026-07-28 02:53:04 +0000 |
|---|---|---|
| committer | iximeow <me@iximeow.net> | 2026-07-28 07:28:15 +0000 |
| commit | 1c03f9be10d03c63d9c6eed1e56333763fee628d (patch) | |
| tree | 59ddcdce9e6d52c0aaf80465f637363569050890 /tests/armv7 | |
| parent | 5581435b4edc8836e172a5088d74d2ec97b2bc99 (diff) | |
temp, armv8-thumb
Diffstat (limited to 'tests/armv7')
| -rw-r--r-- | tests/armv7/thumb.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/armv7/thumb.rs b/tests/armv7/thumb.rs index 2152d1e..fe92e40 100644 --- a/tests/armv7/thumb.rs +++ b/tests/armv7/thumb.rs @@ -2491,6 +2491,10 @@ fn test_decode_misc_cases() { "hint 0x6" ); test_display( + &[0x60, 0xb6], + "cpsie" // TODO: should this be "none" like capstone? + ); + test_display( &[0x61, 0xb6], "cpsie f" ); @@ -4450,6 +4454,14 @@ fn test_parallel_addsub() { test_invalid(&[0xf2, 0xfa, 0x63, 0xfb]); } +/* +#[test] +fn test_stlex() { + test_display( + &[0xc0, 0xe8, 0xf1, 0x7b], +} +*/ + #[test] fn test_decode_ux_sx_32b_cases() { // rotation is hw1[5:4] scaled by 8, and omitted when zero |
