| OLD | NEW |
| 1 # Copyright 2004, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 2004, 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 |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 # Author: Paul N. Hilfinger (Hilfinger@gnat.com) | 16 # Author: Paul N. Hilfinger (Hilfinger@gnat.com) |
| 17 | 17 |
| 18 # Test that GDB cleans up properly after errors that result when a | 18 # Test that GDB cleans up properly after errors that result when a |
| 19 # breakpoint is reset. | 19 # breakpoint is reset. |
| 20 | 20 |
| 21 if $tracelevel then { | |
| 22 strace $tracelevel | |
| 23 } | |
| 24 | |
| 25 | |
| 26 # IDT/SIM apparently doesn't have enough file descriptors to allow the | |
| 27 # problem checked by this test to occur. | |
| 28 if [istarget "mips-idt-*"] { | |
| 29 return 0; | |
| 30 } | |
| 31 | |
| 32 set testfile "chng-syms" | 21 set testfile "chng-syms" |
| 33 set srcfile ${testfile}.c | 22 set srcfile ${testfile}.c |
| 34 set binfile ${objdir}/${subdir}/${testfile} | 23 set binfile ${objdir}/${subdir}/${testfile} |
| 35 | 24 |
| 36 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug additional_flags=-DVARIABLE=var1}] != "" } { | 25 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug additional_flags=-DVARIABLE=var1}] != "" } { |
| 37 untested chng-syms.exp | 26 untested chng-syms.exp |
| 38 return -1 | 27 return -1 |
| 39 } | 28 } |
| 40 | 29 |
| 41 set oldtimeout $timeout | 30 set oldtimeout $timeout |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 timeout { | 101 timeout { |
| 113 fail "(timeout) running with invalidated bpt condition after executa
ble changes" | 102 fail "(timeout) running with invalidated bpt condition after executa
ble changes" |
| 114 } | 103 } |
| 115 } | 104 } |
| 116 | 105 |
| 117 } | 106 } |
| 118 | 107 |
| 119 set timeout $oldtimeout | 108 set timeout $oldtimeout |
| 120 verbose "Timeout is now $timeout seconds" 2 | 109 verbose "Timeout is now $timeout seconds" 2 |
| 121 return 0 | 110 return 0 |
| OLD | NEW |