From 0f4e75cda712f502aba38321c5a6e19eaba96cd1 Mon Sep 17 00:00:00 2001 From: Lucas Steuernagel <38472950+LucasSte@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:48:20 -0300 Subject: [PATCH] Exercise `le` instructions (#558) --- tests/exercise_instructions.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/exercise_instructions.rs b/tests/exercise_instructions.rs index 78532f48..b590802c 100644 --- a/tests/exercise_instructions.rs +++ b/tests/exercise_instructions.rs @@ -500,6 +500,10 @@ fn fuzz_alu() { test_ins(false, format!("be64 r{src}"), &mut prng, 21); test_ins(false, format!("be32 r{src}"), &mut prng, 21); test_ins(false, format!("be16 r{src}"), &mut prng, 21); + + test_ins(true, format!("le64 r{src}"), &mut prng, 21); + test_ins(true, format!("le32 r{src}"), &mut prng, 21); + test_ins(true, format!("le16 r{src}"), &mut prng, 21); } } }