mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +00:00
38 lines
377 B
Plaintext
38 lines
377 B
Plaintext
NAME=comment spaces
|
|
BROKEN=1
|
|
FILE=--
|
|
CMDS=<<EOF
|
|
CS one
|
|
CC foo
|
|
CS two
|
|
CC bar @ 1
|
|
CC cow @ 2
|
|
CC
|
|
CS
|
|
EOF
|
|
EXPECT=<<EOF
|
|
0x00000001 CCu "bar"
|
|
0x00000002 CCu "cow"
|
|
0 1 . one
|
|
1 2 * two
|
|
EOF
|
|
RUN
|
|
|
|
NAME=select all meta spaces
|
|
FILE=--
|
|
CMDS=<<EOF
|
|
CS one
|
|
CC foo
|
|
CS two
|
|
CC bar @ 1
|
|
CC cow @ 2
|
|
CS *
|
|
CC
|
|
EOF
|
|
EXPECT=<<EOF
|
|
0x00000000 CCu "foo"
|
|
0x00000001 CCu "bar"
|
|
0x00000002 CCu "cow"
|
|
EOF
|
|
RUN
|