From 611a375a524fcdee098ae7fae00c5498ff0d1465 Mon Sep 17 00:00:00 2001 From: iximeow Date: Wed, 29 Dec 2021 01:58:27 -0800 Subject: stxrb memory operand error --- test/armv8/a64.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test') diff --git a/test/armv8/a64.rs b/test/armv8/a64.rs index be1f486..c7bddf7 100644 --- a/test/armv8/a64.rs +++ b/test/armv8/a64.rs @@ -4355,6 +4355,20 @@ fn test_weird_str() { } #[test] +fn test_mismatches() { + const TESTS: &[([u8; 4], &'static str)] = &[ + ([0x00, 0x00, 0x00, 0x08], "stxrb w0, w0, [x0]"), + ]; + let errs = run_tests(TESTS); + + for err in errs.iter() { + println!("{}", err); + } + + assert!(errs.is_empty()); +} + +#[test] fn test_cas() { const TESTS: &[([u8; 4], &'static str)] = &[ ([0x20, 0x7c, 0x20, 0x08], "casp w0, w1, w0, w1, [x1]"), -- cgit v1.1