Initial creation of sourceware repository
[external/binutils.git] / gdb / testsuite / gdb.base / term.exp
1 #   Copyright (C) 1988, 1990, 1991, 1992, 1997 Free Software Foundation, Inc.
2
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
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
19
20 # This file was written by Rob Savoye. (rob@cygnus.com)
21
22 if $tracelevel then {
23     strace $tracelevel
24 }
25
26 # This only works for native, I think.
27 if ![isnative] then {
28     continue
29 }
30
31 gdb_start
32
33 #
34 # test running programs
35 #
36 set prms_id 0
37 set bug_id 0
38
39 set testfile "run"
40 set srcfile ${testfile}.c
41 set binfile ${objdir}/${subdir}/${testfile}
42 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
43      gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
44 }
45
46 delete_breakpoints
47 gdb_reinitialize_dir $srcdir/$subdir
48 gdb_load ${binfile}
49
50 gdb_test "set print sevenbit-strings" "" "test set print sevenbit-strings"
51 gdb_test "set print address off" "" "test set print address off"
52 gdb_test "set width 0" "" "test set width 0"
53 gdb_test "info terminal" "No saved terminal information.*" "test info terminal"
54 gdb_run_cmd 5
55 gdb_expect {
56     -re ".*120.*Program exited normally.*$gdb_prompt $" {
57         gdb_test "info terminal" "No saved terminal information.*" "test info terminal #2"
58     }
59     default {
60         fail "term.exp, factorial didn't run to completion for info terminal"
61     }
62 }
63
64 # In mid-execution
65 gdb_breakpoint main
66 gdb_run_cmd 5
67 gdb_expect {
68     -re ".*Breakpoint \[0-9\]+,.*main.*if .argc != 2.*$gdb_prompt $" {
69         gdb_test "info terminal" "Inferior's terminal status .currently saved by GDB.:.*" "info terminal at breakpoint"
70     }
71     -re ".*$gdb_prompt $"       { fail "info terminal at breakpoint" }
72     timeout             { fail "(timeout) info terminal at breakpoint" }
73 }