X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Ftestsuite%2Fgdb.base%2Fnodebug.exp;h=d8c5cd4912ba8353d13f350a2593a6a3915f5f39;hb=9b254dd1ce46c19dde1dde5b8d1e22e862dfacce;hp=d883272201249fb4ccf492c291b9efd403f6e133;hpb=27e232885db363fb545fd2f450e72d929e59b8f6;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/testsuite/gdb.base/nodebug.exp b/gdb/testsuite/gdb.base/nodebug.exp index d883272201..d8c5cd4912 100644 --- a/gdb/testsuite/gdb.base/nodebug.exp +++ b/gdb/testsuite/gdb.base/nodebug.exp @@ -1,18 +1,17 @@ -# Copyright (C) 1997 Free Software Foundation, Inc. +# Copyright 1997, 1999, 2004, 2005, 2007, 2008 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 -# the Free Software Foundation; either version 2 of the License, or +# the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# along with this program. If not, see . # Please email any bugs, comments, and/or additions to this file to: # bug-gdb@prep.ai.mit.edu @@ -27,19 +26,27 @@ set prms_id 0 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." -} +set srcfile $srcdir/$subdir/$testfile.c +set binfile $objdir/$subdir/$testfile -# Create and source the file that provides information about the compiler -# used to compile the test case. if [get_compiler_info ${binfile}] { return -1; } -source ${binfile}.ci +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 @@ -67,23 +74,23 @@ if [runto inner] then { # even without -g, which should be accepted. # Irix5, even though it is ELF, counts as "ecoff" because it # encapsulates ecoff debugging info in a .mdebug section. - # Irix6 gcc omits no debug info at all for static functions and + # 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*" } + 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]* " - if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" "mips-sgi-irix6*" } + 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 {!$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + if {![test_compiler_info "gcc-*"]} then { setup_xfail "mips-sgi-irix6*" } gdb_test "ptype top" "(short|int) \\((|void|int||, )\\)" - if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" } + 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]* " - if {!$gcc_compiled} then { setup_xfail "mips-sgi-irix5*" } + 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 \\(\\))" @@ -100,41 +107,70 @@ if [runto inner] then { # 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*" } + 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 {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" } - if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + 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 {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" } - if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + 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 {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" } - if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + 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 {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" } - if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + 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 {!$gcc_compiled} then { setup_xfail "hppa*-*-hpux*" } - if {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + 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 {$gcc_compiled} then { setup_xfail "mips-sgi-irix6*" } + 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 @@ -145,7 +181,9 @@ if [runto inner] then { # 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 { ! [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)" @@ -173,7 +211,9 @@ if [runto inner] then { # 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 [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"