Do not set prms_id/bug_id anymore.
[external/binutils.git] / gdb / testsuite / gdb.base / info-proc.exp
1 # Copyright 2002, 2003, 2004, 2007, 2008, 2009, 2010
2 # Free Software Foundation, Inc.
3
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
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
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/>.
16
17 # This file was written by Michael Snyder (msnyder@redhat.com)
18 # This is a test for the gdb command "info proc"
19
20 if $tracelevel then {
21         strace $tracelevel
22 }
23
24 if { [is_remote target] } then {
25   continue
26 }
27
28
29 set ws "\[ \t\]+"
30
31 set testfile "break"
32 set srcfile ${testfile}.c
33 set srcfile1 ${testfile}1.c
34 set binfile ${objdir}/${subdir}/${testfile}
35
36 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
37      untested info-proc.exp
38      return -1
39 }
40
41 if  { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
42      untested info-proc.exp
43      return -1
44 }
45
46 if  { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
47      untested info-proc.exp
48      return -1
49 }
50
51 # Start with a fresh gdb.
52
53 gdb_exit
54 gdb_start
55 gdb_reinitialize_dir $srcdir/$subdir
56 gdb_load ${binfile}
57
58 # Does this gdb support info proc?
59 send_gdb "help info proc\n"
60 gdb_expect {
61     -re "Undefined info command: .proc..  Try .help info.*$gdb_prompt $" {
62         # info proc command not supported -- nothing to test here.
63         unsupported "gdb does not support info proc on this target"
64         return -1;
65     }
66     -re "Show /proc process information about .*$gdb_prompt $" {
67         pass "help info proc"
68     }
69     -re ".*$gdb_prompt $" {
70         fail "help info proc"
71     }
72     timeout {
73         fail "help info proc (timeout)"
74     }
75 }
76
77 gdb_test "info proc" "No current process.*" "info proc without a process"
78
79 if { ! [ runto_main ] } then {
80     untested info-proc.exp
81     return -1
82 }
83
84 gdb_test "info proc" "process ${decimal}.*" "info proc with process"
85
86 gdb_test "info proc mapping" \
87         ".*Mapped address spaces:.*${hex}${ws}${hex}${ws}${hex}${ws}${hex}.*" \
88         "info proc mapping"