* core/cmd: Adjust math commands * shell: make `?x` commands a parsing failure We have moved the `?x` commands to `%x`, thus now no command should start with `?`. This patch makes the parser fail to parse `?x` strings. * core/tui: use APIs in panels * There's no `%q` anymore, use `%=`
31 lines
270 B
Text
31 lines
270 B
Text
NAME=dbg.step
|
|
FILE=/bin/ls
|
|
ARGS=-d
|
|
BROKEN=1
|
|
CMDS=<<EOF
|
|
.dr*
|
|
s rip
|
|
f a=rip
|
|
wx 90
|
|
pi 1 # hack this shouldnt be here
|
|
ds
|
|
.dr*
|
|
%v rip-a
|
|
EOF
|
|
EXPECT=<<EOF
|
|
nop
|
|
0x1
|
|
EOF
|
|
RUN
|
|
|
|
NAME=dbg.symbols
|
|
FILE=/bin/ls
|
|
ARGS=-d
|
|
BROKEN=1
|
|
CMDS=<<EOF
|
|
is~?
|
|
?! echo zerosyms
|
|
EOF
|
|
EXPECT=<<EOF
|
|
EOF
|
|
RUN
|