* [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure
@ 2005-04-13 17:12 Paul Gilliam
2005-04-14 19:21 ` Daniel Jacobowitz
0 siblings, 1 reply; 8+ messages in thread
From: Paul Gilliam @ 2005-04-13 17:12 UTC (permalink / raw)
To: gdb-patches
This patch updates gdb.base/gdb1555.exp to use the new shared library infrastructure in
lib/gdb.exp. All the stuff that has been cut from shlib-call.exp is now part of 'gdb-compile'
or 'gdb-compile-shlib' (new) in lib/gdb.exp.
This patch depends on the shared infrastructure patch:
http://sources.redhat.com/ml/gdb-patches/2005-04/msg00096.html
-=# Paul #=-
2005-04-13 Paul Gilliam <pgilliam@us.ibm.com>
* gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update
copyright date.
Index: gdb.base/gdb1555.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.base/gdb1555.exp,v
retrieving revision 1.1
diff -c -3 -p -r1.1 gdb1555.exp
*** gdb.base/gdb1555.exp 18 Feb 2004 03:35:08 -0000 1.1
--- gdb.base/gdb1555.exp 13 Apr 2005 17:08:43 -0000
*************** if $tracelevel then {
*** 27,87 ****
set testfile gdb1555-main
set libfile gdb1555
! set srcfile ${testfile}.c
! set binfile ${objdir}/${subdir}/${testfile}
! remote_exec build "rm -f ${binfile}"
- # get the value of gcc_compiled
if [get_compiler_info ${binfile}] {
return -1
}
! if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}.o" object {debug}] != "" } {
! return -1
! }
!
! # Build the shared libraries this test case needs.
! #
!
! if {$gcc_compiled == 0} {
! if [istarget "hppa*-hp-hpux*"] then {
! set additional_flags "additional_flags=+z"
! } elseif { [istarget "mips-sgi-irix*"] } {
! # Disable SGI compiler's implicit -Dsgi
! set additional_flags "additional_flags=-Usgi"
! } else {
! # don't know what the compiler is...
! set additional_flags ""
! }
! } else {
! if { ([istarget "powerpc*-*-aix*"]
! || [istarget "rs6000*-*-aix*"]) } {
! set additional_flags ""
! } else {
! set additional_flags "additional_flags=-fpic"
! }
! }
!
! set additional_flags "$additional_flags -shared"
! if {[gdb_compile "${srcdir}/${subdir}/${libfile}.c" "${objdir}/${subdir}/${libfile}.so" executable [list debug $additional_flags "incdir=${objdir}"]] != ""} {
! return -1
! }
!
! if { ($gcc_compiled
! && ([istarget "powerpc*-*-aix*"]
! || [istarget "rs6000*-*-aix*"] )) } {
! set additional_flags "additional_flags=-L${objdir}/${subdir}"
! } elseif { [istarget "mips-sgi-irix*"] } {
! set additional_flags "additional_flags=-rpath ${objdir}/${subdir}"
! } else {
! set additional_flags ""
! }
!
! if {[gdb_compile "${objdir}/${subdir}/${testfile}.o ${objdir}/${subdir}/${libfile}.so" "${binfile}" executable [list debug $additional_flags]] != ""} {
! return -1
}
gdb_exit
gdb_start
--- 27,50 ----
set testfile gdb1555-main
set libfile gdb1555
! set srcfile $srcdir/$subdir/$testfile.c
! set libsrc $srcdir/$subdir/$libfile.c
! set binfile $objdir/$subdir/$testfile
! set lib_sl $objdir/$subdir/$libfile.sl
! set lib_opts debug
! set exec_opts [list debug shlib=$lib_sl]
if [get_compiler_info ${binfile}] {
return -1
}
! if {[gdb_compile_shlib $libsrc $lib_sl $lib_opts] != ""
! || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} {
! gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
}
+ # Start with a fresh gdb.
gdb_exit
gdb_start
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-13 17:12 [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure Paul Gilliam @ 2005-04-14 19:21 ` Daniel Jacobowitz 2005-04-20 0:30 ` Paul Gilliam 0 siblings, 1 reply; 8+ messages in thread From: Daniel Jacobowitz @ 2005-04-14 19:21 UTC (permalink / raw) To: Paul Gilliam; +Cc: gdb-patches On Wed, Apr 13, 2005 at 09:11:18AM -0800, Paul Gilliam wrote: > This patch updates gdb.base/gdb1555.exp to use the new shared library infrastructure in > lib/gdb.exp. All the stuff that has been cut from shlib-call.exp is now part of 'gdb-compile' > or 'gdb-compile-shlib' (new) in lib/gdb.exp. > > This patch depends on the shared infrastructure patch: > http://sources.redhat.com/ml/gdb-patches/2005-04/msg00096.html > > -=# Paul #=- > > 2005-04-13 Paul Gilliam <pgilliam@us.ibm.com> > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update > copyright date. OK. Same comment about the indentation of your '||' operators. Also, be sure to line wrap the ChangeLog for 80 columns. -- Daniel Jacobowitz CodeSourcery, LLC ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-14 19:21 ` Daniel Jacobowitz @ 2005-04-20 0:30 ` Paul Gilliam 2005-04-27 15:56 ` Daniel Jacobowitz 0 siblings, 1 reply; 8+ messages in thread From: Paul Gilliam @ 2005-04-20 0:30 UTC (permalink / raw) To: gdb-patches; +Cc: Daniel Jacobowitz On Thursday 14 April 2005 12:20, Daniel Jacobowitz wrote: > On Wed, Apr 13, 2005 at 09:11:18AM -0800, Paul Gilliam wrote: > > This patch updates gdb.base/gdb1555.exp to use the new shared library infrastructure in > > lib/gdb.exp. All the stuff that has been cut from shlib-call.exp is now part of 'gdb-compile' > > or 'gdb-compile-shlib' (new) in lib/gdb.exp. > > > > This patch depends on the shared infrastructure patch: > > http://sources.redhat.com/ml/gdb-patches/2005-04/msg00096.html > > > > -=# Paul #=- > > > > 2005-04-13 Paul Gilliam <pgilliam@us.ibm.com> > > > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update > > copyright date. > > OK. Same comment about the indentation of your '||' operators. Also, > be sure to line wrap the ChangeLog for 80 columns. > > Here is the revised patch: 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> * gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update copyright date. Index: gdb.base/gdb1555.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/gdb1555.exp,v retrieving revision 1.1 diff -c -3 -p -r1.1 gdb1555.exp *** gdb.base/gdb1555.exp 18 Feb 2004 03:35:08 -0000 1.1 --- gdb.base/gdb1555.exp 19 Apr 2005 23:57:52 -0000 *************** if $tracelevel then { *** 27,87 **** set testfile gdb1555-main set libfile gdb1555 ! set srcfile ${testfile}.c ! set binfile ${objdir}/${subdir}/${testfile} ! remote_exec build "rm -f ${binfile}" - # get the value of gcc_compiled if [get_compiler_info ${binfile}] { return -1 } ! if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}.o" object {debug}] != "" } { ! return -1 ! } ! ! # Build the shared libraries this test case needs. ! # ! ! if {$gcc_compiled == 0} { ! if [istarget "hppa*-hp-hpux*"] then { ! set additional_flags "additional_flags=+z" ! } elseif { [istarget "mips-sgi-irix*"] } { ! # Disable SGI compiler's implicit -Dsgi ! set additional_flags "additional_flags=-Usgi" ! } else { ! # don't know what the compiler is... ! set additional_flags "" ! } ! } else { ! if { ([istarget "powerpc*-*-aix*"] ! || [istarget "rs6000*-*-aix*"]) } { ! set additional_flags "" ! } else { ! set additional_flags "additional_flags=-fpic" ! } ! } ! ! set additional_flags "$additional_flags -shared" ! if {[gdb_compile "${srcdir}/${subdir}/${libfile}.c" "${objdir}/${subdir}/${libfile}.so" executable [list debug $additional_flags "incdir=${objdir}"]] != ""} { ! return -1 ! } ! ! if { ($gcc_compiled ! && ([istarget "powerpc*-*-aix*"] ! || [istarget "rs6000*-*-aix*"] )) } { ! set additional_flags "additional_flags=-L${objdir}/${subdir}" ! } elseif { [istarget "mips-sgi-irix*"] } { ! set additional_flags "additional_flags=-rpath ${objdir}/${subdir}" ! } else { ! set additional_flags "" ! } ! ! if {[gdb_compile "${objdir}/${subdir}/${testfile}.o ${objdir}/${subdir}/${libfile}.so" "${binfile}" executable [list debug $additional_flags]] != ""} { return -1 } gdb_exit gdb_start --- 27,51 ---- set testfile gdb1555-main set libfile gdb1555 ! set srcfile $srcdir/$subdir/$testfile.c ! set libsrc $srcdir/$subdir/$libfile.c ! set binfile $objdir/$subdir/$testfile ! set lib_sl $objdir/$subdir/$libfile.sl ! set lib_opts debug ! set exec_opts [list debug shlib=$lib_sl] if [get_compiler_info ${binfile}] { return -1 } ! if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != "" ! || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} { ! untested "Could not compile $srcfile." return -1 } + # Start with a fresh gdb. gdb_exit gdb_start ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-20 0:30 ` Paul Gilliam @ 2005-04-27 15:56 ` Daniel Jacobowitz 2005-04-27 17:47 ` Mark Kettenis 2005-04-28 22:01 ` Paul Gilliam 0 siblings, 2 replies; 8+ messages in thread From: Daniel Jacobowitz @ 2005-04-27 15:56 UTC (permalink / raw) To: Paul Gilliam; +Cc: gdb-patches On Tue, Apr 19, 2005 at 04:31:05PM -0800, Paul Gilliam wrote: > On Thursday 14 April 2005 12:20, Daniel Jacobowitz wrote: > > On Wed, Apr 13, 2005 at 09:11:18AM -0800, Paul Gilliam wrote: > > > This patch updates gdb.base/gdb1555.exp to use the new shared library infrastructure in > > > lib/gdb.exp. All the stuff that has been cut from shlib-call.exp is now part of 'gdb-compile' > > > or 'gdb-compile-shlib' (new) in lib/gdb.exp. > > > > > > This patch depends on the shared infrastructure patch: > > > http://sources.redhat.com/ml/gdb-patches/2005-04/msg00096.html > > > > > > -=# Paul #=- > > > > > > 2005-04-13 Paul Gilliam <pgilliam@us.ibm.com> > > > > > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update > > > copyright date. > > > > OK. Same comment about the indentation of your '||' operators. Also, > > be sure to line wrap the ChangeLog for 80 columns. > > > > > Here is the revised patch: > > 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure > and update copyright date. Two things: in the future, you don't need to mention updating the copyright date in the changelog unless you're doing archeology. Researching missing years is a change worth documenting, adding the current year should be automatic. Also, the changelog is wrong for this patch, since you didn't update the copyright date. You should have, though :-) -- Daniel Jacobowitz CodeSourcery, LLC ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-27 15:56 ` Daniel Jacobowitz @ 2005-04-27 17:47 ` Mark Kettenis 2005-04-28 22:01 ` Paul Gilliam 1 sibling, 0 replies; 8+ messages in thread From: Mark Kettenis @ 2005-04-27 17:47 UTC (permalink / raw) To: drow; +Cc: pgilliam, gdb-patches Date: Wed, 27 Apr 2005 11:55:00 -0400 From: Daniel Jacobowitz <drow@false.org> Two things: in the future, you don't need to mention updating the copyright date in the changelog unless you're doing archeology. Researching missing years is a change worth documenting, adding the current year should be automatic. Oh I didn't know that. I fully agree with your reasoning though. So I'll happily leave this out of the ChangeLogs in the future. Mark ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-27 15:56 ` Daniel Jacobowitz 2005-04-27 17:47 ` Mark Kettenis @ 2005-04-28 22:01 ` Paul Gilliam 2005-04-29 21:18 ` Paul Gilliam 2005-04-30 18:25 ` Daniel Jacobowitz 1 sibling, 2 replies; 8+ messages in thread From: Paul Gilliam @ 2005-04-28 22:01 UTC (permalink / raw) To: gdb-patches On Wednesday 27 April 2005 08:55, Daniel Jacobowitz wrote: > On Tue, Apr 19, 2005 at 04:31:05PM -0800, Paul Gilliam wrote: > > On Thursday 14 April 2005 12:20, Daniel Jacobowitz wrote: > > > On Wed, Apr 13, 2005 at 09:11:18AM -0800, Paul Gilliam wrote: > > > > This patch updates gdb.base/gdb1555.exp to use the new shared library infrastructure in > > > > lib/gdb.exp. All the stuff that has been cut from shlib-call.exp is now part of 'gdb-compile' > > > > or 'gdb-compile-shlib' (new) in lib/gdb.exp. > > > > > > > > This patch depends on the shared infrastructure patch: > > > > http://sources.redhat.com/ml/gdb-patches/2005-04/msg00096.html > > > > > > > > -=# Paul #=- > > > > > > > > 2005-04-13 Paul Gilliam <pgilliam@us.ibm.com> > > > > > > > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update > > > > copyright date. > > > > > > OK. Same comment about the indentation of your '||' operators. Also, > > > be sure to line wrap the ChangeLog for 80 columns. > > > > > > > > Here is the revised patch: > > > > 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> > > > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure > > and update copyright date. > > Two things: in the future, you don't need to mention updating the > copyright date in the changelog unless you're doing archeology. > Researching missing years is a change worth documenting, adding the > current year should be automatic. Also, the changelog is wrong for > this patch, since you didn't update the copyright date. You should > have, though :-) > Don't know how I missed that.... Here is the new version, OK to commit? =# Paul #=- ---- 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> * gdb.base/gdb1555.exp: Change to use new shared library infrastructure. and update copyright date. Index: gdb.base/gdb1555.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/gdb1555.exp,v retrieving revision 1.1 diff -c -3 -p -r1.1 gdb1555.exp *** gdb.base/gdb1555.exp 18 Feb 2004 03:35:08 -0000 1.1 --- gdb.base/gdb1555.exp 28 Apr 2005 21:57:05 -0000 *************** *** 1,4 **** ! # Copyright 2004 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by --- 1,4 ---- ! # Copyright 2004, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by *************** if $tracelevel then { *** 27,87 **** set testfile gdb1555-main set libfile gdb1555 ! set srcfile ${testfile}.c ! set binfile ${objdir}/${subdir}/${testfile} ! remote_exec build "rm -f ${binfile}" - # get the value of gcc_compiled if [get_compiler_info ${binfile}] { return -1 } ! if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}.o" object {debug}] != "" } { ! return -1 ! } ! ! # Build the shared libraries this test case needs. ! # ! ! if {$gcc_compiled == 0} { ! if [istarget "hppa*-hp-hpux*"] then { ! set additional_flags "additional_flags=+z" ! } elseif { [istarget "mips-sgi-irix*"] } { ! # Disable SGI compiler's implicit -Dsgi ! set additional_flags "additional_flags=-Usgi" ! } else { ! # don't know what the compiler is... ! set additional_flags "" ! } ! } else { ! if { ([istarget "powerpc*-*-aix*"] ! || [istarget "rs6000*-*-aix*"]) } { ! set additional_flags "" ! } else { ! set additional_flags "additional_flags=-fpic" ! } ! } ! ! set additional_flags "$additional_flags -shared" ! if {[gdb_compile "${srcdir}/${subdir}/${libfile}.c" "${objdir}/${subdir}/${libfile}.so" executable [list debug $additional_flags "incdir=${objdir}"]] != ""} { ! return -1 ! } ! ! if { ($gcc_compiled ! && ([istarget "powerpc*-*-aix*"] ! || [istarget "rs6000*-*-aix*"] )) } { ! set additional_flags "additional_flags=-L${objdir}/${subdir}" ! } elseif { [istarget "mips-sgi-irix*"] } { ! set additional_flags "additional_flags=-rpath ${objdir}/${subdir}" ! } else { ! set additional_flags "" ! } ! ! if {[gdb_compile "${objdir}/${subdir}/${testfile}.o ${objdir}/${subdir}/${libfile}.so" "${binfile}" executable [list debug $additional_flags]] != ""} { return -1 } gdb_exit gdb_start --- 27,51 ---- set testfile gdb1555-main set libfile gdb1555 ! set srcfile $srcdir/$subdir/$testfile.c ! set libsrc $srcdir/$subdir/$libfile.c ! set binfile $objdir/$subdir/$testfile ! set lib_sl $objdir/$subdir/$libfile.sl ! set lib_opts debug ! set exec_opts [list debug shlib=$lib_sl] if [get_compiler_info ${binfile}] { return -1 } ! if { [gdb_compile_shlib $libsrc $lib_sl $lib_opts] != "" ! || [gdb_compile $srcfile $binfile executable $exec_opts] != ""} { ! untested "Could not compile $srcfile." return -1 } + # Start with a fresh gdb. gdb_exit gdb_start ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-28 22:01 ` Paul Gilliam @ 2005-04-29 21:18 ` Paul Gilliam 2005-04-30 18:25 ` Daniel Jacobowitz 1 sibling, 0 replies; 8+ messages in thread From: Paul Gilliam @ 2005-04-29 21:18 UTC (permalink / raw) To: gdb-patches I must get in a hurry, or something.... Please ignore the extra like in the ChangeLog portion of the patch. I'll get rid of it. On Thursday 28 April 2005 15:03, Paul Gilliam wrote: > On Wednesday 27 April 2005 08:55, Daniel Jacobowitz wrote: > > On Tue, Apr 19, 2005 at 04:31:05PM -0800, Paul Gilliam wrote: > > > On Thursday 14 April 2005 12:20, Daniel Jacobowitz wrote: > > > > On Wed, Apr 13, 2005 at 09:11:18AM -0800, Paul Gilliam wrote: > > > > > This patch updates gdb.base/gdb1555.exp to use the new shared library infrastructure in > > > > > lib/gdb.exp. All the stuff that has been cut from shlib-call.exp is now part of 'gdb-compile' > > > > > or 'gdb-compile-shlib' (new) in lib/gdb.exp. > > > > > > > > > > This patch depends on the shared infrastructure patch: > > > > > http://sources.redhat.com/ml/gdb-patches/2005-04/msg00096.html > > > > > > > > > > -=# Paul #=- > > > > > > > > > > 2005-04-13 Paul Gilliam <pgilliam@us.ibm.com> > > > > > > > > > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure and update > > > > > copyright date. > > > > > > > > OK. Same comment about the indentation of your '||' operators. Also, > > > > be sure to line wrap the ChangeLog for 80 columns. > > > > > > > > > > > Here is the revised patch: > > > > > > 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> > > > > > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure > > > and update copyright date. > > > > Two things: in the future, you don't need to mention updating the > > copyright date in the changelog unless you're doing archeology. > > Researching missing years is a change worth documenting, adding the > > current year should be automatic. Also, the changelog is wrong for > > this patch, since you didn't update the copyright date. You should > > have, though :-) > > > > Don't know how I missed that.... > > Here is the new version, OK to commit? > > =# Paul #=- > ---- > 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure. > and update copyright date. ^^^^^^^^^^^^^^^^^^^^^ extra line, please ignore. > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure 2005-04-28 22:01 ` Paul Gilliam 2005-04-29 21:18 ` Paul Gilliam @ 2005-04-30 18:25 ` Daniel Jacobowitz 1 sibling, 0 replies; 8+ messages in thread From: Daniel Jacobowitz @ 2005-04-30 18:25 UTC (permalink / raw) To: Paul Gilliam; +Cc: gdb-patches On Thu, Apr 28, 2005 at 03:03:27PM -0700, Paul Gilliam wrote: > Don't know how I missed that.... > > Here is the new version, OK to commit? > > =# Paul #=- > ---- > 2005-04-19 Paul Gilliam <pgilliam@us.ibm.com> > > * gdb.base/gdb1555.exp: Change to use new shared library infrastructure. > and update copyright date. This is OK with corrected ChangeLog entry. Thanks again. -- Daniel Jacobowitz CodeSourcery, LLC ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-04-30 18:25 UTC | newest] Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2005-04-13 17:12 [patch] update gdb.base/gdb1555.exp to use new shared library infrastructure Paul Gilliam 2005-04-14 19:21 ` Daniel Jacobowitz 2005-04-20 0:30 ` Paul Gilliam 2005-04-27 15:56 ` Daniel Jacobowitz 2005-04-27 17:47 ` Mark Kettenis 2005-04-28 22:01 ` Paul Gilliam 2005-04-29 21:18 ` Paul Gilliam 2005-04-30 18:25 ` Daniel Jacobowitz
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox