Test for PR gdb/17511, spurious SIGTRAP after stepping into+in signal handler
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / info-proc.exp
CommitLineData
ecd75fc8 1# Copyright 2002-2014 Free Software Foundation, Inc.
ca4976a6
MS
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
ca4976a6 6# (at your option) any later version.
e22f8b7c 7#
ca4976a6
MS
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.
e22f8b7c 12#
ca4976a6 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
ca4976a6 15
ca4976a6
MS
16# This file was written by Michael Snyder (msnyder@redhat.com)
17# This is a test for the gdb command "info proc"
18
ca4976a6
MS
19set ws "\[ \t\]+"
20
f8b41b00 21standard_testfile break.c break1.c
a1dea79a 22
f8b41b00
TT
23if {[prepare_for_testing $testfile.exp $testfile \
24 [list $srcfile $srcfile2] {debug nowarnings}]} {
25 untested $testfile.exp
26 return -1
a1dea79a
FF
27}
28
145b16a9 29gdb_test "help info proc" "Show /proc process information about .*"
ca4976a6 30
3eca55e8
YQ
31gdb_test_multiple "info proc" "info proc without a process" {
32 -re "No current process.*$gdb_prompt $" {
33 pass "info proc without a process"
34 }
145b16a9
UW
35 -re "Not supported on this target.*$gdb_prompt $" {
36 # info proc command not supported -- nothing to test here.
37 unsupported "gdb does not support info proc on this target"
ae59b1da 38 return -1
145b16a9 39 }
145b16a9 40}
ca4976a6 41
3eca55e8
YQ
42if { ! [ runto_main ] } then {
43 untested info-proc.exp
44 return -1
45}
46
47gdb_test "info proc" "process ${decimal}.*" "info proc with process"
48
ca4976a6
MS
49gdb_test "info proc mapping" \
50 ".*Mapped address spaces:.*${hex}${ws}${hex}${ws}${hex}${ws}${hex}.*" \
51 "info proc mapping"
451b7c33
TT
52
53if {[istarget "*-*-linux*"]} {
54 set gcorefile [standard_output_file $testfile.gcore]
55 if {[gdb_gcore_cmd $gcorefile "save a core file"]} {
56 clean_restart $binfile
57
58 gdb_test "core $gcorefile" "Core was generated by.*" \
59 "core [file tail $gcorefile]"
60
61 gdb_test "info proc mapping" \
62 ".*Mapped address spaces:.*${hex}${ws}${hex}${ws}${hex}${ws}${hex}.*" \
63 "info proc mapping with core file"
64 }
65}
This page took 1.29783 seconds and 4 git commands to generate.