[PATCH 7/57][Arm][GAS] Add support for MVE instructions: vstr/vldr
[binutils-gdb.git] / gdb / testsuite / gdb.base / execution-termios.exp
blob67cab06e588b135e84783772d8ac6076553ab003
1 # Copyright 2014-2019 Free Software Foundation, Inc.
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 3 of the License, or
6 # (at your option) any later version.
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.
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/>.  */
16 standard_testfile
18 if {[prepare_for_testing "failed to prepare" $testfile $srcfile debug]} {
19     return -1
22 # Run to main, and execute BODY in the caller's context, with PREFIX
23 # set as test message prefix.
25 proc test { prefix body } {
26     with_test_prefix $prefix {
27         if ![runto_main] {
28             fail "can't run to main"
29             return 0
30         }
31         uplevel 1 $body
32     }
35 # If GDB forgets to put the inferior's terminal settings into effect
36 # while running any of these commands, the program will get a SIGTTOU.
38 test "next" {
39     gdb_test "next" "set break here.*" "termios ok"
42 test "infcall" {
43     if ![target_info exists gdb,cannot_call_functions] {
44         gdb_test "print func ()" " = 1"  "termios ok"
45     } else {
46         unsupported "cannot call functions"
47     }
50 test "continue" {
51     set lineno [gdb_get_line_number "set break here"]
52     gdb_test "break $lineno"
53     gdb_test "continue" ".*set break here.*" "termios ok"
56 test "finish" {
57     gdb_test "break func" "func.*"
58     gdb_test "continue" "func .*"
59     gdb_test "finish" " = 1" "termios ok"