| OLD | NEW |
| 1 # This testcase is part of GDB, the GNU debugger. | 1 # This testcase is part of GDB, the GNU debugger. |
| 2 | 2 |
| 3 # Copyright 2010-2012 Free Software Foundation, Inc. | 3 # Copyright 2010-2012 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 # This program is free software; you can redistribute it and/or modify | 5 # This program is free software; you can redistribute it and/or modify |
| 6 # it under the terms of the GNU General Public License as published by | 6 # it under the terms of the GNU General Public License as published by |
| 7 # the Free Software Foundation; either version 3 of the License, or | 7 # the Free Software Foundation; either version 3 of the License, or |
| 8 # (at your option) any later version. | 8 # (at your option) any later version. |
| 9 # | 9 # |
| 10 # This program is distributed in the hope that it will be useful, | 10 # This program is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. | 13 # GNU General Public License for more details. |
| 14 # | 14 # |
| 15 # You should have received a copy of the GNU General Public License | 15 # You should have received a copy of the GNU General Public License |
| 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | 17 |
| 18 # Test SIGILL generated by some special cases of breakpoints on ia64. Problem | 18 # Test SIGILL generated by some special cases of breakpoints on ia64. Problem |
| 19 # was SIGILL being stored in non-current thread for later retrieval when its | 19 # was SIGILL being stored in non-current thread for later retrieval when its |
| 20 # breakpoint has been already deleted. moribund locations are not active in | 20 # breakpoint has been already deleted. moribund locations are not active in |
| 21 # the default all-stop mode. | 21 # the default all-stop mode. |
| 22 | 22 |
| 23 set testfile "ia64-sigill" | 23 standard_testfile |
| 24 set srcfile ${testfile}.c | |
| 25 set binfile ${objdir}/${subdir}/${testfile} | |
| 26 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" ${binfile} executable
[list debug additional_flags=-lrt]] != "" } { | 24 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" ${binfile} executable
[list debug additional_flags=-lrt]] != "" } { |
| 27 return -1 | 25 return -1 |
| 28 } | 26 } |
| 29 | 27 |
| 30 clean_restart $testfile | 28 clean_restart $testfile |
| 31 | 29 |
| 32 if ![runto_main] { | 30 if ![runto_main] { |
| 33 return -1 | 31 return -1 |
| 34 } | 32 } |
| 35 | 33 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 66 set test "continue for the pending signal" | 64 set test "continue for the pending signal" |
| 67 gdb_test_multiple "continue" $test { | 65 gdb_test_multiple "continue" $test { |
| 68 -re "Breakpoint \[0-9\]+, .*break-at-exit.*\r\n$gdb_prompt $" { | 66 -re "Breakpoint \[0-9\]+, .*break-at-exit.*\r\n$gdb_prompt $" { |
| 69 # Breakpoint has been skipped in the other thread. | 67 # Breakpoint has been skipped in the other thread. |
| 70 pass $test | 68 pass $test |
| 71 } | 69 } |
| 72 -re "Program received signal .*\r\n$gdb_prompt $" { | 70 -re "Program received signal .*\r\n$gdb_prompt $" { |
| 73 fail $test | 71 fail $test |
| 74 } | 72 } |
| 75 } | 73 } |
| OLD | NEW |