]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.arch/s390-tdbregs.exp
Fix more cases of improper test names
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / s390-tdbregs.exp
CommitLineData
618f726f 1# Copyright 2004-2016 Free Software Foundation, Inc.
4ac33720
UW
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 3 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, see <http://www.gnu.org/licenses/>.
15
16# Please email any bugs, comments, and/or additions to this file to:
17# bug-gdb@gnu.org
18
19# This file is part of the gdb testsuite.
20
21
22if { ![istarget s390-*-*] && ![istarget s390x-*-* ] } {
23 verbose "Skipping s390 TDB register tests."
24 return
25}
26
4a932159 27standard_testfile .c
4ac33720 28
5b362f04 29if { [prepare_for_testing "failed to prepare" $testfile $srcfile] } {
4ac33720
UW
30 return -1
31}
32
4ac33720
UW
33if { ![runto_main] } then {
34 gdb_suppress_tests
35}
36
37gdb_test_multiple "next" "check for TE support" {
38 -re "Program received signal SIGILL,.*\r\n$gdb_prompt $" {
bc6c7af4 39 unsupported "no TE support."
4ac33720
UW
40 return
41 }
42 -re "\[0-9\]+.*\r\n$gdb_prompt $" {
43 pass "TE support available"
44 }
45 -re "$gdb_prompt $" {
bc6c7af4 46 unsupported "no TE support (unknown error)."
4ac33720
UW
47 return
48 }
49}
50
51set crashline [gdb_get_line_number "FAULT"]
52
53gdb_test "print \$tdb0" "\\\$\[0-9\]+ = <unavailable>" "tdb0 unavailable"
54gdb_test "print \$tr0" "\\\$\[0-9\]+ = <unavailable>" "tr0 unavailable"
55gdb_test "next" \
56 "Program received signal SIGSEGV, .*" \
57 "crash in transaction"
58gdb_test "print/x \$tdb0" "\\\$\[0-9\]+ = 0x1.*" "tdb0 available"
59gdb_test "set print symbol-filename" "" "set print symbol-filename"
60gdb_test "print/a \$atia" \
61 "<crash_in_transaction.*:$crashline>" \
62 "ATIA points to crash"