Fix CI by making GAS test Linux x86-only

This commit is contained in:
Anton Kochkov 2023-02-22 16:19:23 +08:00 committed by Anton Kochkov
parent 0e8828c54e
commit 315ba643b0
2 changed files with 9 additions and 10 deletions

View file

@ -30,7 +30,7 @@ EXPECT=<<EOF
EOF
RUN
NAME=rz-asm -s att -a x86.as -b 64 movq %rdx, %rax
NAME=rz-asm -s att -a x86.as -b 64 "movq %rdx, %rax"
FILE==
CMDS=!rz-asm -s att -a x86.as -b 64 "movq %rdx, %rax"
EXPECT=<<EOF
@ -38,6 +38,14 @@ EXPECT=<<EOF
EOF
RUN
NAME=rz-asm -a x86 -s att "movl %eax, %ebx"
FILE==
CMDS=!rz-asm -a x86 -s att "movl %eax, %ebx"
EXPECT=<<EOF
89c3
EOF
RUN
NAME=att pa
FILE=--
CMDS=pa add $33, %rbx @a:x86.as:64 @e:asm.syntax=att

View file

@ -604,12 +604,3 @@ EXPECT_ERR=<<EOF
Invalid instruction of lifting not implemented.
EOF
RUN
# Add GAS/AT&T syntax support in asm.c assembler.
NAME=rz-asm -a x86 -s att "movl %eax, %ebx"
FILE==
CMDS=!rz-asm -a x86 -s att "movl %eax, %ebx"
EXPECT=<<EOF
89c3
EOF
RUN