mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 05:40:10 +00:00
781fcccf55
* Move CMDS= before EXPECT= in tests * Revert "Move CMDS= before EXPECT= in tests" This reverts commit13a9085a36
. * Move CMDS= before EXPECT= in tests, take 2 * Revert "Move CMDS= before EXPECT= in tests, take 2" This reverts commit7c0bf6d8e3
. * Move CMDS= before EXPECT= in tests, take 3 Co-authored-by: pancake <pancake@nopcode.org>
29 lines
271 B
Plaintext
29 lines
271 B
Plaintext
NAME=asm/callflag
|
|
FILE=-
|
|
CMDS=<<EOF
|
|
e asm.arch=x86
|
|
f eax=33
|
|
pa call eax
|
|
f test=eax
|
|
pa call test
|
|
EOF
|
|
EXPECT=<<EOF
|
|
ffd0
|
|
e81c000000
|
|
EOF
|
|
RUN
|
|
|
|
NAME=asm.assembler
|
|
FILE=-
|
|
CMDS=<<EOF
|
|
e asm.arch=x86
|
|
pa call eax
|
|
e asm.assembler=java
|
|
pa bipush 33
|
|
EOF
|
|
EXPECT=<<EOF
|
|
ffd0
|
|
1021
|
|
EOF
|
|
RUN
|