From b7ac0d56035dda259d9c666c03bc70ace5e58f41 Mon Sep 17 00:00:00 2001 From: iximeow Date: Mon, 13 Jan 2020 20:48:53 -0800 Subject: explicitly fail to handle WAIT prefix --- test/test.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/test.rs') diff --git a/test/test.rs b/test/test.rs index 07d715c..8c8ad25 100644 --- a/test/test.rs +++ b/test/test.rs @@ -4,7 +4,7 @@ extern crate yaxpeax_x86; use std::fmt::Write; use yaxpeax_arch::{Decoder, LengthedInstruction}; -use yaxpeax_x86::{Instruction, InstDecoder}; +use yaxpeax_x86::{DecodeError, Instruction, InstDecoder}; fn test_invalid(data: &[u8]) { test_invalid_under(&InstDecoder::default(), data); @@ -374,6 +374,9 @@ fn test_prefixes() { test_display(&[0x66, 0x41, 0x31, 0xc0], "xor r8w, ax"); test_display(&[0x66, 0x41, 0x32, 0xc0], "xor al, r8b"); test_display(&[0x40, 0x32, 0xc5], "xor al, bpl"); + + // test that WAIT doesn't blow up, at least... + assert_eq!(InstDecoder::default().decode([0x9b, 0xf8].iter().cloned()).err(), Some(DecodeError::IncompleteDecoder)); } #[test] -- cgit v1.1