rizin/test/db/cmd/display_flag
Aswin C d42cde8ca5
Disable asm.bytes by default ##cons (#155)
* Disable `asm.bytes` by default

* Fix tests by adding `e asm.bytes=true` (1/n)

* Fix tests by adding  (2/n)

* Fix tests by adding `e asm.bytes=true` (3/n)

* Fix tests by adding `asm.bytes=true` (4/n)

* Fix test by adding `asm.bytes=true` (5/n)

* Fix mostly all broken tests

* Attemp to fix the rzpipe test

* Attempt to fix the tests in `db/cmd/cmd_pipe`

* Fix tests again

* Fix cmd_pipe test

* Add a test where `asm.bytes` is false

Co-authored-by: Anton Kochkov <anton.kochkov@gmail.com>
2020-12-15 12:47:33 +01:00

61 lines
1 KiB
Text

NAME=Function labels in comments
FILE=malloc://512
CMDS=<<EOF
e asm.bytes=true
e asm.arch=x86
e asm.bits=16
e asm.nbytes=2
e asm.cmt.col=0
wx 66b801000000b90f006683fb02e2fa66bb01000000c3
af+ 0000:0000 fcn1
afb+ 0 0 22
f .loop1 @ 0000:0009
pd 1 @ 0000:000d
EOF
EXPECT=<<EOF
| `=< 0000:000d e2fa loop 9 ; fcn1.loop1
EOF
RUN
NAME=Function labels in disasm
FILE=malloc://512
CMDS=<<EOF
e asm.bytes=true
e asm.arch=x86
e asm.bits=16
e asm.nbytes=2
wx 66b801000000b90f006683fb02e2fa66bb01000000c3
af+ 0 fnc1
afb+ 0 0 22
f .loop1 @ 9
pd 1 @ 9
EOF
EXPECT=<<EOF
| .loop1:
| 0000:0009 6683. cmp ebx, 2
EOF
RUN
NAME=ANSI injection vuln
FILE=bins/mach0/ansi
CMDS=<<EOF
sp
e asm.bytes=true
e asm.lines=0
e asm.comments=0
pd 1
isq
EOF
EXPECT=<<EOF
;-- section.0.__TEXT.__text:
;-- _rt:
;-- func.100000f50:
0x100000f50 55 push rbp
0x100000000 0 __mh_execute_header
0x100000f60 0 _main
0x100000f50 0 _r\x1b#8qt
0x100000f8a 0 imp.printf
0x100000f50 0 func.100000f50
0x100000f60 0 func.100000f60
EOF
RUN