| OLD | NEW |
| 1 # Copyright 1998-2003, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 1998-2003, 2007-2012 Free Software Foundation, Inc. |
| 2 | 2 |
| 3 # This program is free software; you can redistribute it and/or modify | 3 # This program is free software; you can redistribute it and/or modify |
| 4 # it under the terms of the GNU General Public License as published by | 4 # it under the terms of the GNU General Public License as published by |
| 5 # the Free Software Foundation; either version 3 of the License, or | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #maintenance print type -- Print a type chain for a given symbol | 40 #maintenance print type -- Print a type chain for a given symbol |
| 41 #maintenance print unwind -- Print unwind table entry at given address | 41 #maintenance print unwind -- Print unwind table entry at given address |
| 42 # | 42 # |
| 43 # | 43 # |
| 44 #maintenance info sections -- List the BFD sections of the exec and core files | 44 #maintenance info sections -- List the BFD sections of the exec and core files |
| 45 #maintenance info breakpoints -- Status of all breakpoints | 45 #maintenance info breakpoints -- Status of all breakpoints |
| 46 # | 46 # |
| 47 | 47 |
| 48 | 48 |
| 49 | 49 |
| 50 if $tracelevel then { | |
| 51 strace $tracelevel | |
| 52 } | |
| 53 | |
| 54 global usestubs | |
| 55 | |
| 56 set testfile "break" | 50 set testfile "break" |
| 57 set srcfile ${testfile}.c | 51 set srcfile ${testfile}.c |
| 58 set srcfile1 ${testfile}1.c | 52 set srcfile1 ${testfile}1.c |
| 59 set binfile ${objdir}/${subdir}/${testfile} | 53 set binfile ${objdir}/${subdir}/${testfile} |
| 60 | 54 |
| 61 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debu
g nowarnings}] != "" } { | 55 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debu
g nowarnings}] != "" } { |
| 62 untested maint.exp | 56 untested maint.exp |
| 63 return -1 | 57 return -1 |
| 64 } | 58 } |
| 65 | 59 |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 fail "maint internal-error (timeout)" | 568 fail "maint internal-error (timeout)" |
| 575 untested "internal-error resync" | 569 untested "internal-error resync" |
| 576 } | 570 } |
| 577 } | 571 } |
| 578 | 572 |
| 579 #set timeout $oldtimeout | 573 #set timeout $oldtimeout |
| 580 | 574 |
| 581 | 575 |
| 582 gdb_exit | 576 gdb_exit |
| 583 return 0 | 577 return 0 |
| OLD | NEW |