diff options
author | iximeow <me@iximeow.net> | 2019-03-30 15:27:25 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2020-01-12 16:10:13 -0800 |
commit | 9ca5adc847098d6f74f49707b94ed0df23626c18 (patch) | |
tree | dfc71dc49c4b93e95585b05680fd5832f3c290e1 /test/test.rs | |
parent | 53d8bbd02980da9558fd972065491af836a136ee (diff) |
fix incorrect sign tests and decode oddities
Diffstat (limited to 'test/test.rs')
-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"); } |