diff options
Diffstat (limited to 'test/real_mode/mod.rs')
| -rw-r--r-- | test/real_mode/mod.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/real_mode/mod.rs b/test/real_mode/mod.rs index 9f6bdf3..962f5fa 100644 --- a/test/real_mode/mod.rs +++ b/test/real_mode/mod.rs @@ -1,5 +1,7 @@ mod operand; mod opcode; +#[cfg(feature="fmt")] +mod display; #[cfg(feature="behavior")] mod behavior; @@ -170,7 +172,10 @@ fn test_display_format(decoder: &InstDecoder, data: &[u8], expected: &'static st // since write_to unconditionally uses DisplayStyle::Intel } DisplayStyle::C => { - // panic!("no support for C-style display in testcases yet"); + panic!("no support for C-style display in testcases yet"); + } + other => { + panic!("unsupported style: {:?}", other); } } } |
