| OLD | NEW |
| 1 # Copyright 1988, 1990-1992, 1994-1997, 1999, 2007-2012 Free Software | 1 # Copyright 1988, 1990-1992, 1994-1997, 1999, 2007-2012 Free Software |
| 2 # Foundation, Inc. | 2 # Foundation, Inc. |
| 3 | 3 |
| 4 # This program is free software; you can redistribute it and/or modify | 4 # This program is free software; you can redistribute it and/or modify |
| 5 # it under the terms of the GNU General Public License as published by | 5 # it under the terms of the GNU General Public License as published by |
| 6 # the Free Software Foundation; either version 3 of the License, or | 6 # the Free Software Foundation; either version 3 of the License, or |
| 7 # (at your option) any later version. | 7 # (at your option) any later version. |
| 8 # | 8 # |
| 9 # This program is distributed in the hope that it will be useful, | 9 # This program is distributed in the hope that it will be useful, |
| 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 # GNU General Public License for more details. | 12 # GNU General Public License for more details. |
| 13 # | 13 # |
| 14 # You should have received a copy of the GNU General Public License | 14 # You should have received a copy of the GNU General Public License |
| 15 # along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | 16 |
| 17 # This file was written by Rob Savoye. (rob@cygnus.com) | |
| 18 | |
| 19 if $tracelevel then { | |
| 20 strace $tracelevel | |
| 21 } | |
| 22 | |
| 23 # Don't try this for remote targets. | 17 # Don't try this for remote targets. |
| 24 if [is_remote target] then { | 18 if [is_remote target] then { |
| 25 continue | 19 continue |
| 26 } | 20 } |
| 27 | 21 |
| 28 if [target_info exists noargs] then { | 22 if { [prepare_for_testing term.exp term term.c] } { |
| 29 verbose "Skipping term.exp because of noargs." | |
| 30 return | |
| 31 } | |
| 32 | |
| 33 gdb_start | |
| 34 | |
| 35 # | |
| 36 # test running programs | |
| 37 # | |
| 38 | |
| 39 if { [prepare_for_testing term.exp term run.c] } { | |
| 40 return -1 | 23 return -1 |
| 41 } | 24 } |
| 42 | 25 |
| 43 gdb_test_no_output "set print sevenbit-strings" | 26 # Once before running the program. |
| 44 gdb_test_no_output "set print address off" | 27 gdb_test "info terminal" \ |
| 45 gdb_test_no_output "set width 0" | 28 "No saved terminal information.*" \ |
| 29 "test info terminal" |
| 46 | 30 |
| 47 gdb_test "info terminal" "No saved terminal information.*" "test info terminal" | 31 if ![runto_main] then { |
| 48 gdb_run_cmd 5 | 32 fail "Can't run to main" |
| 49 gdb_expect { | 33 return 0 |
| 50 -re ".*120.*$inferior_exited_re normally.*$gdb_prompt $" { | |
| 51 » gdb_test "info terminal" "No saved terminal information.*" "test info te
rminal #2" | |
| 52 } | |
| 53 default { | |
| 54 » fail "term.exp, factorial didn't run to completion for info terminal" | |
| 55 } | |
| 56 } | 34 } |
| 57 | 35 |
| 58 # In mid-execution | 36 # Once while the program is running and stopped. |
| 59 gdb_breakpoint main | 37 gdb_test "info terminal" \ |
| 60 gdb_run_cmd 5 | 38 "Inferior's terminal status .currently saved by GDB.:.*" \ |
| 61 gdb_expect { | 39 "info terminal at breakpoint" |
| 62 -re ".*Breakpoint \[0-9\]+,.*main.*if .argc != 2.*$gdb_prompt $" { | 40 |
| 63 » gdb_test "info terminal" "Inferior's terminal status .currently saved by
GDB.:.*" "info terminal at breakpoint" | 41 gdb_continue_to_end |
| 64 } | 42 |
| 65 -re ".*$gdb_prompt $"» { fail "info terminal at breakpoint" } | 43 # One last time after the program having exited. |
| 66 timeout» » { fail "(timeout) info terminal at breakpoint" } | 44 gdb_test "info terminal" \ |
| 67 } | 45 "No saved terminal information.*" \ |
| 46 "test info terminal #2" |
| OLD | NEW |