diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test.rs b/test/test.rs index 7f00432..df94aeb 100644 --- a/test/test.rs +++ b/test/test.rs @@ -92,9 +92,9 @@ fn test_control_flow() { #[test] fn test_test_cmp() { - test_display(&[0x48, 0x3d, 0x01, 0xf0, 0xff, 0xff], "cmp rax, 0xfffffffffffff001"); - test_display(&[0x3d, 0x01, 0xf0, 0xff, 0xff], "cmp eax, 0xfffff001"); - test_display(&[0x48, 0x83, 0xf8, 0xff], "cmp rax, 0xffffffffffffffff"); + test_display(&[0x48, 0x3d, 0x01, 0xf0, 0xff, 0xff], "cmp rax, -0xfff"); + test_display(&[0x3d, 0x01, 0xf0, 0xff, 0xff], "cmp eax, -0xfff"); + test_display(&[0x48, 0x83, 0xf8, 0xff], "cmp rax, -0x1"); test_display(&[0x48, 0x39, 0xc6], "cmp rsi, rax"); } |