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]

[commit/obvious/testsuite] scope.exp, gcc_compiled


Another night, another patch for gcc_compiled.

Tested with: native i686-pc-linux-gnu, gcc 2.95.3 and gcc 3.3.2,
-gdwarf-2 and -stabs+.

In order to verify that the calls to setup_xfail were still happening,
I kludged a trace statement into the definition of setup_xfail in dejagnu.
I saw the same trace before and after.

I am committing this now as an obvious fix.

Michael C

2003-12-05  Michael Chastain  <mec.gnu@mindspring.com>

	Partial fix for PR testsuite/1456.
	* gdb.base/scope.exp (test_at_main): Replace references to
	gcc_compiled with calls to test_compiler_info.
	(test_at_foo): Likewise.
	(test_at_bar): Likewise.

Index: gdb.base/scope.exp
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.base/scope.exp,v
retrieving revision 1.6
diff -c -3 -p -r1.6 scope.exp
*** gdb.base/scope.exp	4 May 2002 15:18:21 -0000	1.6
--- gdb.base/scope.exp	6 Dec 2003 01:56:39 -0000
***************
*** 1,5 ****
! # Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002 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,5 ----
! # Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003
! # 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
*************** proc test_at_main {} {
*** 59,65 ****
      global det_file
      global srcdir
      global subdir
-     global gcc_compiled
      global hp_cc_compiler
  
      # skip past init.  There may be a call to __main at the start of
--- 59,64 ----
*************** proc test_at_main {} {
*** 97,109 ****
  
      # No clue why the powerpc fails this test.
      setup_xfail "powerpc-*-*"
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print filelocal_ro" "\\\$$decimal = 201" "print filelocal_ro in test_at_main" ] { 
        gdb_suppress_tests ; 
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      setup_xfail "powerpc-*-*"
      if [gdb_test "print 'scope0.c'::filelocal_ro" "\\\$$decimal = 201" "print 'scope0.c'::filelocal_ro"  "No symbol \"scope0.c\" in current context.*" "print '$srcdir/$subdir/scope0.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
--- 96,108 ----
  
      # No clue why the powerpc fails this test.
      setup_xfail "powerpc-*-*"
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print filelocal_ro" "\\\$$decimal = 201" "print filelocal_ro in test_at_main" ] { 
        gdb_suppress_tests ; 
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      setup_xfail "powerpc-*-*"
      if [gdb_test "print 'scope0.c'::filelocal_ro" "\\\$$decimal = 201" "print 'scope0.c'::filelocal_ro"  "No symbol \"scope0.c\" in current context.*" "print '$srcdir/$subdir/scope0.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
*************** proc test_at_main {} {
*** 112,118 ****
  
      # Print scope1.c::filelocal, which is 2
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if {$hp_cc_compiler} then { setup_xfail "hppa2.0w-*-*" 11747CLLbs}
      if [gdb_test "print 'scope1.c'::filelocal" "\\\$$decimal = 2" "print 'scope1.c'::filelocal"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal"] { 
        gdb_suppress_tests ; 
--- 111,117 ----
  
      # Print scope1.c::filelocal, which is 2
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if {$hp_cc_compiler} then { setup_xfail "hppa2.0w-*-*" 11747CLLbs}
      if [gdb_test "print 'scope1.c'::filelocal" "\\\$$decimal = 2" "print 'scope1.c'::filelocal"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal"] { 
        gdb_suppress_tests ; 
*************** proc test_at_main {} {
*** 121,127 ****
  
      # Print scope1.c::filelocal_bss, which is 102
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if {$hp_cc_compiler} then { setup_xfail "hppa2.0w-*-*" 11747CLLbs}
      if [gdb_test "print 'scope1.c'::filelocal_bss" "\\\$$decimal = 102" "print 'scope1.c'::filelocal_bss"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_bss"] { 
        gdb_suppress_tests ; 
--- 120,126 ----
  
      # Print scope1.c::filelocal_bss, which is 102
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if {$hp_cc_compiler} then { setup_xfail "hppa2.0w-*-*" 11747CLLbs}
      if [gdb_test "print 'scope1.c'::filelocal_bss" "\\\$$decimal = 102" "print 'scope1.c'::filelocal_bss"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_bss"] { 
        gdb_suppress_tests ; 
*************** proc test_at_main {} {
*** 130,136 ****
  
      # Print scope1.c::filelocal_ro, which is 202
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if {$hp_cc_compiler} then { setup_xfail "hppa2.0w-*-*" 11747CLLbs}
      if [gdb_test "print 'scope1.c'::filelocal_ro" "\\\$$decimal = 202" "print 'scope1.c'::filelocal_ro"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
--- 129,135 ----
  
      # Print scope1.c::filelocal_ro, which is 202
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if {$hp_cc_compiler} then { setup_xfail "hppa2.0w-*-*" 11747CLLbs}
      if [gdb_test "print 'scope1.c'::filelocal_ro" "\\\$$decimal = 202" "print 'scope1.c'::filelocal_ro"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
*************** proc test_at_main {} {
*** 144,150 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal" "\\\$$decimal = 3" "print 'scope1.c'::foo::funclocal"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal"] { 
        gdb_suppress_tests ; 
      }
--- 143,149 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal" "\\\$$decimal = 3" "print 'scope1.c'::foo::funclocal"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_main {} {
*** 157,163 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal_ro" "\\\$$decimal = 203" "print 'scope1.c'::foo::funclocal_ro"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_ro"] { 
        gdb_suppress_tests ; 
      }
--- 156,162 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal_ro" "\\\$$decimal = 203" "print 'scope1.c'::foo::funclocal_ro"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_ro"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_main {} {
*** 170,176 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::bar::funclocal" "\\\$$decimal = 4" "print 'scope1.c'::bar::funclocal"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal"] { 
        gdb_suppress_tests ; 
      }
--- 169,175 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::bar::funclocal" "\\\$$decimal = 4" "print 'scope1.c'::bar::funclocal"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_foo {} {
*** 184,190 ****
      global det_file
      global srcdir
      global subdir
-     global gcc_compiled
  
      if [gdb_test "next" ".*bar \\(\\);" "" ] { 
        gdb_suppress_tests ; 
--- 183,188 ----
*************** proc test_at_foo {} {
*** 207,213 ****
  
      # Print scope0.c::filelocal_ro, which is 201
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      setup_xfail "powerpc-*-*"
      if [gdb_test "print 'scope0.c'::filelocal_ro" "\\\$$decimal = 201" "print 'scope0.c'::filelocal_ro"  "No symbol \"scope0.c\" in current context.*" "print '$srcdir/$subdir/scope0.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
--- 205,211 ----
  
      # Print scope0.c::filelocal_ro, which is 201
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      setup_xfail "powerpc-*-*"
      if [gdb_test "print 'scope0.c'::filelocal_ro" "\\\$$decimal = 201" "print 'scope0.c'::filelocal_ro"  "No symbol \"scope0.c\" in current context.*" "print '$srcdir/$subdir/scope0.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
*************** proc test_at_foo {} {
*** 218,224 ****
  
      # Print scope1.c::filelocal, which is 2
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal" "\\\$$decimal = 2" "print 'scope1.c'::filelocal at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal"] { 
        gdb_suppress_tests ; 
      }
--- 216,222 ----
  
      # Print scope1.c::filelocal, which is 2
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal" "\\\$$decimal = 2" "print 'scope1.c'::filelocal at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_foo {} {
*** 227,240 ****
      gdb_test "print filelocal_bss" "\\\$$decimal = 102" \
  	"print filelocal_bss at foo"
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::filelocal_bss" "\\\$$decimal = 102" "print 'scope1.c'::filelocal_bss at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_bss"
  
  
      gdb_test "print filelocal_ro" "\\\$$decimal = 202" \
  	"print filelocal_ro at foo"
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::filelocal_ro" "\\\$$decimal = 202" "print 'scope1.c'::filelocal_ro at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_ro"
  
  
--- 225,238 ----
      gdb_test "print filelocal_bss" "\\\$$decimal = 102" \
  	"print filelocal_bss at foo"
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::filelocal_bss" "\\\$$decimal = 102" "print 'scope1.c'::filelocal_bss at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_bss"
  
  
      gdb_test "print filelocal_ro" "\\\$$decimal = 202" \
  	"print filelocal_ro at foo"
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::filelocal_ro" "\\\$$decimal = 202" "print 'scope1.c'::filelocal_ro at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_ro"
  
  
*************** proc test_at_foo {} {
*** 245,251 ****
      gdb_test "print foo::funclocal" "\\\$$decimal = 3" \
  	"print foo::funclocal at foo"
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::foo::funclocal" "\\\$$decimal = 3" "print 'scope1.c'::foo::funclocal at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal"
  
  
--- 243,249 ----
      gdb_test "print foo::funclocal" "\\\$$decimal = 3" \
  	"print foo::funclocal at foo"
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::foo::funclocal" "\\\$$decimal = 3" "print 'scope1.c'::foo::funclocal at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal"
  
  
*************** proc test_at_foo {} {
*** 257,263 ****
      gdb_test "print foo::funclocal_bss" "\\\$$decimal = 103" \
  	"print foo::funclocal_bss at foo"
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::foo::funclocal_bss" "\\\$$decimal = 103" "print 'scope1.c'::foo::funclocal_bss at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_bss"
  
  
--- 255,261 ----
      gdb_test "print foo::funclocal_bss" "\\\$$decimal = 103" \
  	"print foo::funclocal_bss at foo"
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::foo::funclocal_bss" "\\\$$decimal = 103" "print 'scope1.c'::foo::funclocal_bss at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_bss"
  
  
*************** proc test_at_foo {} {
*** 269,275 ****
      gdb_test "print foo::funclocal_ro" "\\\$$decimal = 203" \
  	"print foo::funclocal_ro at foo"
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::foo::funclocal_ro" "\\\$$decimal = 203" "print 'scope1.c'::foo::funclocal_ro at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_ro"
  
  
--- 267,273 ----
      gdb_test "print foo::funclocal_ro" "\\\$$decimal = 203" \
  	"print foo::funclocal_ro at foo"
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::foo::funclocal_ro" "\\\$$decimal = 203" "print 'scope1.c'::foo::funclocal_ro at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_ro"
  
  
*************** proc test_at_foo {} {
*** 278,284 ****
      gdb_test "print bar::funclocal" "\\\$$decimal = 4" \
  	"print bar::funclocal at foo"
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::bar::funclocal" "\\\$$decimal = 4" "print 'scope1.c'::bar::funclocal at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal"
      gdb_stop_suppressing_tests;
  
--- 276,282 ----
      gdb_test "print bar::funclocal" "\\\$$decimal = 4" \
  	"print bar::funclocal at foo"
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      gdb_test "print 'scope1.c'::bar::funclocal" "\\\$$decimal = 4" "print 'scope1.c'::bar::funclocal at foo"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal"
      gdb_stop_suppressing_tests;
  
*************** proc test_at_bar {} {
*** 290,296 ****
      global det_file
      global srcdir
      global subdir
-     global gcc_compiled
  
      if [gdb_test "next" ".*" "" ] { 
        gdb_suppress_tests ; 
--- 288,293 ----
*************** proc test_at_bar {} {
*** 313,319 ****
  
     # Print scope0.c::filelocal_ro, which is 201
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      setup_xfail "powerpc-*-*"
      if [gdb_test "print 'scope0.c'::filelocal_ro" "\\\$$decimal = 201" "print 'scope0.c'::filelocal_ro at bar"  "No symbol \"scope0.c\" in current context.*" "print '$srcdir/$subdir/scope0.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
--- 310,316 ----
  
     # Print scope0.c::filelocal_ro, which is 201
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      setup_xfail "powerpc-*-*"
      if [gdb_test "print 'scope0.c'::filelocal_ro" "\\\$$decimal = 201" "print 'scope0.c'::filelocal_ro at bar"  "No symbol \"scope0.c\" in current context.*" "print '$srcdir/$subdir/scope0.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
*************** proc test_at_bar {} {
*** 327,333 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal" "\\\$$decimal = 2" "print 'scope1.c'::filelocal at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal"] { 
        gdb_suppress_tests ; 
      }
--- 324,330 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal" "\\\$$decimal = 2" "print 'scope1.c'::filelocal at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 340,346 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal_bss" "\\\$$decimal = 102" "print 'scope1.c'::filelocal_bss at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_bss"] { 
        gdb_suppress_tests ; 
      }
--- 337,343 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal_bss" "\\\$$decimal = 102" "print 'scope1.c'::filelocal_bss at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_bss"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 353,359 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal_ro" "\\\$$decimal = 202" "print 'scope1.c'::filelocal_ro at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
      }
--- 350,356 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::filelocal_ro" "\\\$$decimal = 202" "print 'scope1.c'::filelocal_ro at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::filelocal_ro"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 366,372 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal" "\\\$$decimal = 3" "print 'scope1.c'::foo::funclocal at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal"] { 
        gdb_suppress_tests ; 
      }
--- 363,369 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal" "\\\$$decimal = 3" "print 'scope1.c'::foo::funclocal at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 379,385 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal_bss" "\\\$$decimal = 103" "print 'scope1.c'::foo::funclocal_bss at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_bss"] { 
        gdb_suppress_tests ; 
      }
--- 376,382 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal_bss" "\\\$$decimal = 103" "print 'scope1.c'::foo::funclocal_bss at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_bss"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 392,398 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal_ro" "\\\$$decimal = 203" "print 'scope1.c'::foo::funclocal_ro at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_ro"] { 
        gdb_suppress_tests ; 
      }
--- 389,395 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::foo::funclocal_ro" "\\\$$decimal = 203" "print 'scope1.c'::foo::funclocal_ro at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::foo::funclocal_ro"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 410,416 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::bar::funclocal" "\\\$$decimal = 4" "print 'scope1.c'::bar::funclocal at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal"] { 
        gdb_suppress_tests ; 
      }
--- 407,413 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::bar::funclocal" "\\\$$decimal = 4" "print 'scope1.c'::bar::funclocal at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal"] { 
        gdb_suppress_tests ; 
      }
*************** proc test_at_bar {} {
*** 428,434 ****
      }
  
  
!     if {$gcc_compiled} then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::bar::funclocal_bss" "\\\$$decimal = 104" "print 'scope1.c'::bar::funclocal_bss at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal_bss"] { 
        gdb_suppress_tests ; 
      }
--- 425,431 ----
      }
  
  
!     if { [test_compiler_info gcc-*-*] } then { setup_xfail "rs6000-*-*" }
      if [gdb_test "print 'scope1.c'::bar::funclocal_bss" "\\\$$decimal = 104" "print 'scope1.c'::bar::funclocal_bss at bar"  "No symbol \"scope1.c\" in current context.*" "print '$srcdir/$subdir/scope1.c'::bar::funclocal_bss"] { 
        gdb_suppress_tests ; 
      }


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