| OLD | NEW |
| 1 # Copyright 1994-2000, 2007-2012 Free Software Foundation, Inc. | 1 # Copyright 1994-2000, 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 if [target_info exists gdb,nointerrupts] { | 16 if [target_info exists gdb,nointerrupts] { |
| 17 verbose "Skipping interrupt.exp because of nointerrupts." | 17 verbose "Skipping interrupt.exp because of nointerrupts." |
| 18 continue | 18 continue |
| 19 } | 19 } |
| 20 | 20 |
| 21 if [target_info exists gdb,noinferiorio] { | 21 if [target_info exists gdb,noinferiorio] { |
| 22 verbose "Skipping interrupt.exp because of noinferiorio." | 22 verbose "Skipping interrupt.exp because of noinferiorio." |
| 23 return | 23 return |
| 24 } | 24 } |
| 25 | 25 |
| 26 if $tracelevel then { | |
| 27 strace $tracelevel | |
| 28 } | |
| 29 | |
| 30 | 26 |
| 31 set testfile interrupt | 27 set testfile interrupt |
| 32 set srcfile ${testfile}.c | 28 set srcfile ${testfile}.c |
| 33 set binfile ${objdir}/${subdir}/${testfile} | 29 set binfile ${objdir}/${subdir}/${testfile} |
| 34 | 30 |
| 35 set options { debug } | 31 set options { debug } |
| 36 if { ! [target_info exists gdb,nosignals] } { | 32 if { ! [target_info exists gdb,nosignals] } { |
| 37 lappend options "additional_flags=-DSIGNALS" | 33 lappend options "additional_flags=-DSIGNALS" |
| 38 } | 34 } |
| 39 | 35 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 -re "end of file.*$inferior_exited_re normally.*$gdb_prompt $" { | 199 -re "end of file.*$inferior_exited_re normally.*$gdb_prompt $" { |
| 204 pass "send end of file" | 200 pass "send end of file" |
| 205 } | 201 } |
| 206 -re "$gdb_prompt $" { fail "send end of file" } | 202 -re "$gdb_prompt $" { fail "send end of file" } |
| 207 timeout { fail "send end of file (timeout)" } | 203 timeout { fail "send end of file (timeout)" } |
| 208 eof { fail "send end of file (eof)" } | 204 eof { fail "send end of file (eof)" } |
| 209 } | 205 } |
| 210 } | 206 } |
| 211 } | 207 } |
| 212 return 0 | 208 return 0 |
| OLD | NEW |