From eb2f586a0a432ca12038e73f43c662423f9f34c4 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 29 Nov 2003 13:55:17 +0000 Subject: [PATCH] * gdb.asm/asm-source.exp: Initialize asm-note to "empty". Set asm-note to "netbsd" for *-*-netbsdelf* and x86_64-*-netbsd*. Use it to create the appropriate note.inc. * gdb.asm/asmsrc1.s: Include "note.inc". * gdb.asm/netbsd.inc: New file. * gdb.asm/empty.inc: New file. --- gdb/testsuite/ChangeLog | 9 +++++++++ gdb/testsuite/gdb.asm/asm-source.exp | 10 ++++++++++ gdb/testsuite/gdb.asm/asmsrc1.s | 2 ++ gdb/testsuite/gdb.asm/empty.inc | 1 + gdb/testsuite/gdb.asm/netbsd.inc | 12 ++++++++++++ 5 files changed, 34 insertions(+) create mode 100644 gdb/testsuite/gdb.asm/empty.inc create mode 100644 gdb/testsuite/gdb.asm/netbsd.inc diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 03391320be..5751971f8b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2003-11-29 Mark Kettenis + + * gdb.asm/asm-source.exp: Initialize asm-note to "empty". Set + asm-note to "netbsd" for *-*-netbsdelf* and x86_64-*-netbsd*. Use + it to create the appropriate note.inc. + * gdb.asm/asmsrc1.s: Include "note.inc". + * gdb.asm/netbsd.inc: New file. + * gdb.asm/empty.inc: New file. + 2003-11-28 Michael Chastain Partial fix for PR testsuite/1456. diff --git a/gdb/testsuite/gdb.asm/asm-source.exp b/gdb/testsuite/gdb.asm/asm-source.exp index d07fc7df19..648c77abfc 100644 --- a/gdb/testsuite/gdb.asm/asm-source.exp +++ b/gdb/testsuite/gdb.asm/asm-source.exp @@ -32,6 +32,7 @@ set prms_id 0 set bug_id 0 set asm-arch "" +set asm-note "empty" set asm-flags "" set link-flags "--entry _start" @@ -124,6 +125,12 @@ if {[istarget "*-*-freebsd*"] || [istarget "*-*-netbsd*"]} then { append link-flags " -static" } +# On NetBSD/ELF we need a special NetBSD-identifying note section. +if { [istarget "*-*-netbsdelf*"] + || [istarget "x86_64-*-netbsd*"] } then { + set asm-note "netbsd" +} + # 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 @@ -146,6 +153,8 @@ set srcfile2 asmsrc2.s remote_exec build "rm -f ${subdir}/arch.inc" remote_download host ${srcdir}/${subdir}/${asm-arch}.inc ${subdir}/arch.inc +remote_exec build "rm -f ${subdir}/note.inc" +remote_download host ${srcdir}/${subdir}/${asm-note}.inc ${subdir}/note.inc if { "${asm-flags}" == "" } { #set asm-flags "-Wa,-gstabs,-I${srcdir}/${subdir},-I${objdir}/${subdir}" @@ -359,3 +368,4 @@ gdb_test "disassem foostatic" ".*:.*End of assembler dump." \ "look at static function" remote_exec build "rm -f ${subdir}/arch.inc" +remote_exec build "rm -f ${subdir}/note.inc" diff --git a/gdb/testsuite/gdb.asm/asmsrc1.s b/gdb/testsuite/gdb.asm/asmsrc1.s index cba0e90ec2..48bfb86d41 100644 --- a/gdb/testsuite/gdb.asm/asmsrc1.s +++ b/gdb/testsuite/gdb.asm/asmsrc1.s @@ -65,3 +65,5 @@ gdbasm_datavar globalvar 11 comment "A static variable" gdbasm_datavar staticvar 5 + + .include "note.inc" diff --git a/gdb/testsuite/gdb.asm/empty.inc b/gdb/testsuite/gdb.asm/empty.inc new file mode 100644 index 0000000000..e786488d9f --- /dev/null +++ b/gdb/testsuite/gdb.asm/empty.inc @@ -0,0 +1 @@ + comment "empty" diff --git a/gdb/testsuite/gdb.asm/netbsd.inc b/gdb/testsuite/gdb.asm/netbsd.inc new file mode 100644 index 0000000000..9446966c33 --- /dev/null +++ b/gdb/testsuite/gdb.asm/netbsd.inc @@ -0,0 +1,12 @@ + comment "netbsd .note" + +.section ".note.netbsd.ident", "a" + .p2align 2 + + .long 7 + .long 4 + .long 1 + .ascii "NetBSD\0\0" + .long 105010000 + + .p2align 2 -- 2.11.0