diff options
author | iximeow <me@iximeow.net> | 2021-09-28 19:51:35 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2021-09-28 19:52:37 -0700 |
commit | 3a4b54bc496cf71b771e32cfb3ad0f2e804df610 (patch) | |
tree | 690865c3134093e723c7e3c7e1ac2757fcb9db74 /test | |
parent | 44f4179c626dc346f51063e6fbfcd2e85171d9c8 (diff) |
handle another unintended panic in display impl
Diffstat (limited to 'test')
-rw-r--r-- | test/armv7/thumb.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/armv7/thumb.rs b/test/armv7/thumb.rs index c74da37..9182f6e 100644 --- a/test/armv7/thumb.rs +++ b/test/armv7/thumb.rs @@ -3588,6 +3588,10 @@ fn test_decode_str_32b_cases() { &[0x41, 0xf8, 0x04, 0x2b], "str.w r2, [r1], 0x4" ); + test_display( + &[0x41, 0xf8, 0x00, 0x2b], + "str.w r2, [r1]" + ); } #[test] |