diff options
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 |
