From: Elena Zannoni Date: Mon, 8 Apr 2002 00:01:06 +0000 (+0000) Subject: 2002-04-07 Elena Zannoni X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0fcddd82b64ffe3938e9f750746388c949053e1c;p=binutils-gdb.git 2002-04-07 Elena Zannoni Work around for PR gdb/285: * gdb.asm/asm-source.exp: Bail out if multilibs are detected. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 3fe54a04528..4cca82dd269 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2002-04-07 Elena Zannoni + + Work around for PR gdb/285: + * gdb.asm/asm-source.exp: Bail out if multilibs are detected. + 2002-04-07 Elena Zannoni * gdb.asm/asm-source.exp: Build symbolic link to arch specific diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp index 04a1acd5df1..11ced2970e0 100644 --- a/gdb/testsuite/gdb.asm/asm-source.exp +++ b/gdb/testsuite/gdb.asm/asm-source.exp @@ -67,6 +67,21 @@ if { "${asm-arch}" == "" } { gdb_suppress_entire_file "Assembly source test -- not implemented for this target." } +# Watch out, we are invoking the assembler, but the testsuite sets multilib +# switches according to compiler syntax. If we pass these options straight +# to the assembler, they won't always make sense. If we don't pass them to +# the assembler, the final link will complain that the object files were +# built with different defaults. So no matter what we do, we lose. We may as +# well get out of this test sooner rather than later. +set dest [target_info name] +if [board_info $dest exists multilib_flags] { + set multilib_flags [board_info $dest multilib_flags] + if { "${multilib_flags}" != "" } { + gdb_suppress_entire_file "Assembly source test -- multilibs not supported by this test." + return; + } +} + set testfile "asm-source" set binfile ${objdir}/${subdir}/${testfile} set src1 ${srcdir}/${subdir}/asmsrc1.s