| OLD | NEW |
| 1 # static.exp -- test script, for GDB, the GNU debugger. | 1 # static.exp -- test script, for GDB, the GNU debugger. |
| 2 | 2 |
| 3 # Copyright 2004-2005, 2007-2012 Free Software Foundation, Inc. | 3 # Copyright 2004-2005, 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 # Based on manythreads written by Jeff Johnston, contributed by Red | 18 # Based on manythreads written by Jeff Johnston, contributed by Red |
| 19 # Hat. | 19 # Hat. |
| 20 | 20 |
| 21 if $tracelevel then { | |
| 22 strace $tracelevel | |
| 23 } | |
| 24 | 21 |
| 25 | 22 standard_testfile |
| 26 set testfile "staticthreads" | |
| 27 set srcfile ${testfile}.c | |
| 28 set binfile ${objdir}/${subdir}/${testfile} | |
| 29 set static_flag "-static" | 23 set static_flag "-static" |
| 30 | 24 |
| 31 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" \ | 25 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" \ |
| 32 executable \ | 26 executable \ |
| 33 » [list debug "incdir=${objdir}" "additional_flags=${static_flag}" \ | 27 » [list debug "additional_flags=${static_flag}" \ |
| 34 ]] != "" } { | 28 ]] != "" } { |
| 35 return -1 | 29 return -1 |
| 36 } | 30 } |
| 37 | 31 |
| 38 gdb_start | 32 clean_restart ${binfile} |
| 39 gdb_reinitialize_dir $srcdir/$subdir | |
| 40 gdb_load ${binfile} | |
| 41 gdb_test_no_output "set print sevenbit-strings" | 33 gdb_test_no_output "set print sevenbit-strings" |
| 42 | 34 |
| 43 | 35 |
| 44 # See if the static multi-threaded program runs. | 36 # See if the static multi-threaded program runs. |
| 45 | 37 |
| 46 runto_main | 38 runto_main |
| 47 gdb_test "break sem_post" | 39 gdb_test "break sem_post" |
| 48 set test "Continue to main's call of sem_post" | 40 set test "Continue to main's call of sem_post" |
| 49 gdb_test_multiple "continue" "$test" { | 41 gdb_test_multiple "continue" "$test" { |
| 50 -re "Breakpoint .*, .*sem_post .*$gdb_prompt " { | 42 -re "Breakpoint .*, .*sem_post .*$gdb_prompt " { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 set test "GDB exits with static thread program" | 82 set test "GDB exits with static thread program" |
| 91 gdb_test_multiple "quit" "$test" { | 83 gdb_test_multiple "quit" "$test" { |
| 92 -re "Quit anyway\\? \\(y or n\\) $" { | 84 -re "Quit anyway\\? \\(y or n\\) $" { |
| 93 send_gdb "y\n" | 85 send_gdb "y\n" |
| 94 exp_continue | 86 exp_continue |
| 95 } | 87 } |
| 96 eof { | 88 eof { |
| 97 pass "$test" | 89 pass "$test" |
| 98 } | 90 } |
| 99 } | 91 } |
| OLD | NEW |