From 8b77b3cf4ee5be247663353bd75fd3abd495acf7 Mon Sep 17 00:00:00 2001 From: iximeow Date: Wed, 29 Dec 2021 01:57:52 -0800 Subject: cas and sme/sve stub --- test/armv8/a64.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test/armv8') diff --git a/test/armv8/a64.rs b/test/armv8/a64.rs index 11426ea..be1f486 100644 --- a/test/armv8/a64.rs +++ b/test/armv8/a64.rs @@ -4353,3 +4353,17 @@ fn test_weird_str() { assert!(errs.is_empty()); } + +#[test] +fn test_cas() { + const TESTS: &[([u8; 4], &'static str)] = &[ + ([0x20, 0x7c, 0x20, 0x08], "casp w0, w1, w0, w1, [x1]"), + ]; + let errs = run_tests(TESTS); + + for err in errs.iter() { + println!("{}", err); + } + + assert!(errs.is_empty()); +} -- cgit v1.1