| 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 | 16 |
| 17 # The program sigaltstack.c creates a backtrace containing nested | 17 # The program sigaltstack.c creates a backtrace containing nested |
| 18 # signal handlers on an alternative stack. This in turn leads to a | 18 # signal handlers on an alternative stack. This in turn leads to a |
| 19 # non-contiguous (and possibly non-monotonic) backtrace - stack | 19 # non-contiguous (and possibly non-monotonic) backtrace - stack |
| 20 # address jump at the normal-alt stack boundary. | 20 # address jump at the normal-alt stack boundary. |
| 21 | 21 |
| 22 # This test confirms that GDB can both backtrace through and finish | 22 # This test confirms that GDB can both backtrace through and finish |
| 23 # such a stack. | 23 # such a stack. |
| 24 | 24 |
| 25 if [target_info exists gdb,nosignals] { | 25 if [target_info exists gdb,nosignals] { |
| 26 verbose "Skipping signals.exp because of nosignals." | 26 verbose "Skipping signals.exp because of nosignals." |
| 27 continue | 27 continue |
| 28 } | 28 } |
| 29 | 29 |
| 30 if $tracelevel then { | |
| 31 strace $tracelevel | |
| 32 } | |
| 33 | |
| 34 | 30 |
| 35 set testfile sigaltstack | 31 set testfile sigaltstack |
| 36 set srcfile ${testfile}.c | 32 set srcfile ${testfile}.c |
| 37 set binfile ${objdir}/${subdir}/${testfile} | 33 set binfile ${objdir}/${subdir}/${testfile} |
| 38 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug}] != "" } { | 34 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {deb
ug}] != "" } { |
| 39 untested "Couldn't compile ${srcfile}.c" | 35 untested "Couldn't compile ${srcfile}.c" |
| 40 return -1 | 36 return -1 |
| 41 } | 37 } |
| 42 | 38 |
| 43 # get things started | 39 # get things started |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 } | 89 } |
| 94 | 90 |
| 95 # Finish? | 91 # Finish? |
| 96 finish_test "signal handler called." "finish from catch LEAF" | 92 finish_test "signal handler called." "finish from catch LEAF" |
| 97 finish_test "thrower .next_level=INNER, .*" "finish to throw INNER" | 93 finish_test "thrower .next_level=INNER, .*" "finish to throw INNER" |
| 98 finish_test "catcher .*" "finish to catch INNER" | 94 finish_test "catcher .*" "finish to catch INNER" |
| 99 finish_test "signal handler called.*" "finish from catch INNER" | 95 finish_test "signal handler called.*" "finish from catch INNER" |
| 100 finish_test "thrower .next_level=OUTER, .*" "finish to OUTER" | 96 finish_test "thrower .next_level=OUTER, .*" "finish to OUTER" |
| 101 finish_test "catcher .*" "finish to catch MAIN" | 97 finish_test "catcher .*" "finish to catch MAIN" |
| 102 finish_test "main .*" "finish to MAIN" | 98 finish_test "main .*" "finish to MAIN" |
| OLD | NEW |