This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] update gdb.base/nodebug.exp to use new shared library infrasturcture


On Thursday 14 April 2005 12:27, Daniel Jacobowitz wrote:
> On Thu, Apr 14, 2005 at 08:27:13AM -0800, Paul Gilliam wrote:
> > 2005-04-14  Paul Gilliam  <pgilliam@us.ibm.com>
> > 
> > 	* gdb.base/nodebug.exp: Use new shared library infrastructure and update copyright.
> > 
> > Index: gdb.base/nodebug.exp
> 
> This changelog bears no relation to the patch.  What is this patch for?
> 
Right.  Sorry, I got carried away by the shared library infrastructure patches 8-)

Here is the right stuff:

2005-04-19  Paul Gilliam  <pgilliam@us.ibm.com>

	* gdb.base/nodebug.exp: Allow for compiling by IBM's xlc compiler,
        use test_compiler_info instead of gcc_compiled, and update copyright.

Index: gdb.base/nodebug.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.base/nodebug.exp,v
retrieving revision 1.4
diff -c -3 -p -r1.4 nodebug.exp
*** gdb.base/nodebug.exp	19 Feb 2004 16:43:19 -0000	1.4
--- gdb.base/nodebug.exp	19 Apr 2005 23:58:26 -0000
***************
*** 1,4 ****
! # Copyright 1997, 1999, 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 1997, 1999, 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
*************** set prms_id 0
*** 27,44 ****
  set bug_id 0
  
  set testfile nodebug
! set srcfile ${testfile}.c
! set binfile ${objdir}/${subdir}/${testfile}
! if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable ""] != "" } {
!      gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
! }
  
- # Create and source the file that provides information about the compiler
- # used to compile the test case.
  if [get_compiler_info ${binfile}] {
      return -1;
  }
  
  gdb_exit
  gdb_start
  gdb_reinitialize_dir $srcdir/$subdir
--- 27,54 ----
  set bug_id 0
  
  set testfile nodebug
! set srcfile $srcdir/$subdir/$testfile.c
! set binfile $objdir/$subdir/$testfile
  
  if [get_compiler_info ${binfile}] {
      return -1;
  }
  
+ if [test_compiler_info "xlc-*"] {
+     # By default, IBM'x xlc compiler doesn't add static variables into the symtab.
+     # Use "-qstatsym" to do so. 
+     set exec_opts additional_flags=-qstatsym
+ } else {
+     set exec_opts ""
+ }
+ 
+ if  { [gdb_compile $srcfile $binfile executable $exec_opts] != "" } {
+     untested "Couldn't compile $srcfile."
+     return -1
+ }
+ 
+ # Start with a fresh gdb.
+ 
  gdb_exit
  gdb_start
  gdb_reinitialize_dir $srcdir/$subdir
*************** if [runto inner] then {
*** 68,87 ****
      # Irix6 gcc emits no debug info at all for static functions and
      # variables, so all tests involving statics fail.
      
!     if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" "mips-sgi-irix6*" }
      gdb_test "p top" \
  	"\{(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))\} \[0-9a-fx]* <top(\\(int\\)|)>"
!     if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" "mips-sgi-irix6*" }
      gdb_test "whatis top" \
  	"(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))"
!     if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "ptype top" "(short|int) \\((|void|int|<non-float parameter>|<non-float parameter>, <non-float parameter>)\\)"
      
!     if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" }
      setup_xfail "mips-sgi-irix6*"
      gdb_test "p middle" \
  	"\{(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))\} \[0-9a-fx]* <middle(\\(int\\)|)>"
!     if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" }
      setup_xfail "mips-sgi-irix6*"
      gdb_test "whatis middle" \
  	"(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))"
--- 78,97 ----
      # Irix6 gcc emits no debug info at all for static functions and
      # variables, so all tests involving statics fail.
      
!     if {![test_compiler_info "gcc-*"]} then { setup_xfail "mips-sgi-irix5*" "mips-sgi-irix6*" }
      gdb_test "p top" \
  	"\{(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))\} \[0-9a-fx]* <top(\\(int\\)|)>"
!     if {![test_compiler_info "gcc-*"]} then { setup_xfail "mips-sgi-irix5*" "mips-sgi-irix6*" }
      gdb_test "whatis top" \
  	"(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))"
!     if {![test_compiler_info "gcc-*"]} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "ptype top" "(short|int) \\((|void|int|<non-float parameter>|<non-float parameter>, <non-float parameter>)\\)"
      
!     if {![test_compiler_info "gcc-*"]} then { setup_xfail "mips-sgi-irix5*" }
      setup_xfail "mips-sgi-irix6*"
      gdb_test "p middle" \
  	"\{(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))\} \[0-9a-fx]* <middle(\\(int\\)|)>"
!     if {![test_compiler_info "gcc-*"]} then { setup_xfail "mips-sgi-irix5*" }
      setup_xfail "mips-sgi-irix6*"
      gdb_test "whatis middle" \
  	"(<(text variable|function), no debug info>|short \\(int\\)|short \\(\\))"
*************** if [runto inner] then {
*** 98,138 ****
      # doesn't know the variables exist at all.
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "p datalocal" "= 4"
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "whatis datalocal" "<(data variable|variable), no debug info>"
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "ptype datalocal" "<(data variable|variable), no debug info>"
-     
      gdb_test "p bssglobal" "= 0"
      gdb_test "whatis bssglobal" "<(data variable|variable), no debug info>|int"
      gdb_test "ptype bssglobal" "<(data variable|variable), no debug info>|int"
      
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "p bsslocal" "= 0"
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "whatis bsslocal" "<(data variable|variable), no debug info>"
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" }
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "ptype bsslocal" "<(data variable|variable), no debug info>"
      
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      gdb_test "backtrace 10" "#0.*inner.*#1.*middle.*#2.*top.*#3.*main.*" \
  	"backtrace from inner in nodebug.exp"
      # Or if that doesn't work, at least hope for the external symbols
--- 108,177 ----
      # doesn't know the variables exist at all.
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     } else {
!         setup_xfail "hppa*-*-hpux*"
!     }
! 
      gdb_test "p datalocal" "= 4"
+ 
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     } else {
!         setup_xfail "hppa*-*-hpux*"
!     }
! 
      gdb_test "whatis datalocal" "<(data variable|variable), no debug info>"
+ 
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     } else {
!         setup_xfail "hppa*-*-hpux*"
!     }
! 
      gdb_test "ptype datalocal" "<(data variable|variable), no debug info>"
      gdb_test "p bssglobal" "= 0"
      gdb_test "whatis bssglobal" "<(data variable|variable), no debug info>|int"
      gdb_test "ptype bssglobal" "<(data variable|variable), no debug info>|int"
      
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     } else {
!         setup_xfail "hppa*-*-hpux*"
!     }
! 
      gdb_test "p bsslocal" "= 0"
+ 
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     } else {
!         setup_xfail "hppa*-*-hpux*"
!     }
! 
      gdb_test "whatis bsslocal" "<(data variable|variable), no debug info>"
+ 
      setup_xfail "rs6000*-*-aix*"
      setup_xfail "powerpc*-*-aix*"
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     } else {
!         setup_xfail "hppa*-*-hpux*"
!     }
      gdb_test "ptype bsslocal" "<(data variable|variable), no debug info>"
      
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*" 
!     }
! 
      gdb_test "backtrace 10" "#0.*inner.*#1.*middle.*#2.*top.*#3.*main.*" \
  	"backtrace from inner in nodebug.exp"
      # Or if that doesn't work, at least hope for the external symbols
*************** if [runto inner] then {
*** 143,149 ****
      
      # This test is not as obscure as it might look.  `p getenv ("TERM")'
      # is a real-world example, at least on many systems.
!     if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      if [target_info exists gdb,cannot_call_functions] {
  	setup_xfail "*-*-*" 2416
  	fail "p/c array_index(\"abcdef\",2)"
--- 182,190 ----
      
      # This test is not as obscure as it might look.  `p getenv ("TERM")'
      # is a real-world example, at least on many systems.
!     if { ! [test_compiler_info "gcc-*"]} {
!         setup_xfail "mips-sgi-irix6*" 
!     }
      if [target_info exists gdb,cannot_call_functions] {
  	setup_xfail "*-*-*" 2416
  	fail "p/c array_index(\"abcdef\",2)"
*************** if [runto inner] then {
*** 171,177 ****
      
      # Now, try that we can give names of file-local symbols which happen
      # to be unique, and have it still work
!     if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" }
      if [runto middle] then {
  	gdb_test "backtrace 10" "#0.*middle.*#1.*top.*#2.*main.*" \
  	    "backtrace from middle in nodebug.exp"
--- 212,220 ----
      
      # Now, try that we can give names of file-local symbols which happen
      # to be unique, and have it still work
!     if [test_compiler_info "gcc-*"] {
!         setup_xfail "mips-sgi-irix6*"
!     }
      if [runto middle] then {
  	gdb_test "backtrace 10" "#0.*middle.*#1.*top.*#2.*main.*" \
  	    "backtrace from middle in nodebug.exp"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]