diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2024-01-15 07:31:29 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2024-01-15 07:37:19 -0800 |
commit | 7bd344dd0e0469a93cbbf50f797155278cb76a0b (patch) | |
tree | f0f8d0d0ca518e9347767e963f3f0e970de94026 | |
parent | 0fb9921b9ed497cd2776ad6f77d25557cc4d9e30 (diff) | |
download | gdb-7bd344dd0e0469a93cbbf50f797155278cb76a0b.zip gdb-7bd344dd0e0469a93cbbf50f797155278cb76a0b.tar.gz gdb-7bd344dd0e0469a93cbbf50f797155278cb76a0b.tar.bz2 |
x86-64: Skip SCFI tests for x32 targets
Since SCFI isn't supported on x32:
Fatal error: SCFI is not supported for this ABI
skip SCFI tests for x32 targets.
PR gas/31245
* testsuite/gas/scfi/x86_64/scfi-x86-64.exp: Skip for x32
targets.
-rw-r--r-- | gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp b/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp index 460d5fd..2b29180 100644 --- a/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp +++ b/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp @@ -19,7 +19,7 @@ if { ![is_elf_format] } then { } # common tests -if { ([istarget "x86_64-*-*"]) } then { +if { ([istarget "x86_64-*-*"] && ![istarget "x86_64-*-linux*-gnux32"]) } then { global ASFLAGS set old_ASFLAGS "$ASFLAGS" |