| 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 2004, 2007-2012 Free Software Foundation, Inc. | 3 # Copyright 2004, 2007-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 if $tracelevel { | |
| 19 strace $tracelevel | |
| 20 } | |
| 21 | |
| 22 | 18 |
| 23 # This test verifies that a macro using backtrace can be applied to all threads | 19 # This test verifies that a macro using backtrace can be applied to all threads |
| 24 # and will continue for each thread even though an error may occur in | 20 # and will continue for each thread even though an error may occur in |
| 25 # backtracing one of the threads. | 21 # backtracing one of the threads. |
| 26 | 22 |
| 27 set testfile "threadapply" | 23 standard_testfile |
| 28 set srcfile ${testfile}.c | 24 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executab
le debug] != "" } { |
| 29 set binfile ${objdir}/${subdir}/${testfile} | |
| 30 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executab
le [list debug "incdir=${objdir}"]] != "" } { | |
| 31 return -1 | 25 return -1 |
| 32 } | 26 } |
| 33 | 27 |
| 34 gdb_exit | 28 clean_restart ${binfile} |
| 35 gdb_start | |
| 36 gdb_reinitialize_dir $srcdir/$subdir | |
| 37 gdb_load ${binfile} | |
| 38 | 29 |
| 39 # | 30 # |
| 40 # Run to `main' where we begin our tests. | 31 # Run to `main' where we begin our tests. |
| 41 # | 32 # |
| 42 | 33 |
| 43 if ![runto_main] then { | 34 if ![runto_main] then { |
| 44 gdb_suppress_tests | 35 gdb_suppress_tests |
| 45 } | 36 } |
| 46 | 37 |
| 47 # Break after all threads have been started. | 38 # Break after all threads have been started. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 65 # subsequent commands. | 56 # subsequent commands. |
| 66 gdb_test_no_output "set backtrace limit 3" | 57 gdb_test_no_output "set backtrace limit 3" |
| 67 gdb_test "thread apply all backthread" "Thread ..*\\\$\[0-9]+ = 0x14.*Thread ..*
\\\$\[0-9]+ = 0x14.*Thread ..*\\\$\[0-9]+ = 0x14.*Thread ..*\\\$\[0-9]+ = 0x14.*
Thread ..*\\\$\[0-9]+ = 0x14.*Thread ..*\\\$\[0-9]+ = 0x14" | 58 gdb_test "thread apply all backthread" "Thread ..*\\\$\[0-9]+ = 0x14.*Thread ..*
\\\$\[0-9]+ = 0x14.*Thread ..*\\\$\[0-9]+ = 0x14.*Thread ..*\\\$\[0-9]+ = 0x14.*
Thread ..*\\\$\[0-9]+ = 0x14.*Thread ..*\\\$\[0-9]+ = 0x14" |
| 68 | 59 |
| 69 # Go into the thread_function to check that a simple "thread apply" | 60 # Go into the thread_function to check that a simple "thread apply" |
| 70 # does not change the selected frame. | 61 # does not change the selected frame. |
| 71 gdb_test "step" "thread_function.*" "step to the thread_function" | 62 gdb_test "step" "thread_function.*" "step to the thread_function" |
| 72 gdb_test "up" ".*in main.*" "go up in the stack frame" | 63 gdb_test "up" ".*in main.*" "go up in the stack frame" |
| 73 gdb_test "thread apply all print 1" "Thread ..*\\\$\[0-9]+ = 1.*Thread ..*\\\$\
[0-9]+ = 1.*Thread ..*\\\$\[0-9]+ = 1.*Thread ..*\\\$\[0-9]+ = 1.*Thread ..*\\\$
\[0-9]+ = 1.*Thread ..*\\\$\[0-9]+ = 1" "run a simple print command on all threa
ds" | 64 gdb_test "thread apply all print 1" "Thread ..*\\\$\[0-9]+ = 1.*Thread ..*\\\$\
[0-9]+ = 1.*Thread ..*\\\$\[0-9]+ = 1.*Thread ..*\\\$\[0-9]+ = 1.*Thread ..*\\\$
\[0-9]+ = 1.*Thread ..*\\\$\[0-9]+ = 1" "run a simple print command on all threa
ds" |
| 74 gdb_test "down" "#0.*thread_function.*" "go down and check selected frame" | 65 gdb_test "down" "#0.*thread_function.*" "go down and check selected frame" |
| OLD | NEW |