2012-01-04 08:17:56 +00:00
|
|
|
# Copyright 2002-2004, 2007-2012 Free Software Foundation, Inc.
|
2002-01-05 02:44:07 +00:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2002-01-05 02:44:07 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2002-01-05 02:44:07 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2002-01-05 02:44:07 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2002-01-05 02:44:07 +00:00
|
|
|
|
|
|
|
# This file was written by Michael Snyder (msnyder@redhat.com)
|
|
|
|
# This is a test for the gdb command "info proc"
|
|
|
|
|
2007-05-15 13:18:09 +00:00
|
|
|
if { [is_remote target] } then {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2002-01-05 02:44:07 +00:00
|
|
|
|
|
|
|
set ws "\[ \t\]+"
|
|
|
|
|
2003-12-09 18:19:20 +00:00
|
|
|
set testfile "break"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set srcfile1 ${testfile}1.c
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
|
2006-03-07 15:23:33 +00:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}0.o" object {debug nowarnings}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested info-proc.exp
|
|
|
|
return -1
|
2003-12-09 18:19:20 +00:00
|
|
|
}
|
|
|
|
|
2006-03-07 15:23:33 +00:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile1}" "${binfile}1.o" object {debug nowarnings}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested info-proc.exp
|
|
|
|
return -1
|
2003-12-09 18:19:20 +00:00
|
|
|
}
|
|
|
|
|
2006-03-07 15:23:33 +00:00
|
|
|
if { [gdb_compile "${binfile}0.o ${binfile}1.o" "${binfile}" executable {debug nowarnings}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested info-proc.exp
|
|
|
|
return -1
|
2002-01-05 02:44:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Start with a fresh gdb.
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
# Does this gdb support info proc?
|
2010-05-24 22:06:59 +00:00
|
|
|
gdb_test_multiple "help info proc" "help info proc" {
|
2002-01-05 02:44:07 +00:00
|
|
|
-re "Undefined info command: .proc.. Try .help info.*$gdb_prompt $" {
|
|
|
|
# info proc command not supported -- nothing to test here.
|
|
|
|
unsupported "gdb does not support info proc on this target"
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
-re "Show /proc process information about .*$gdb_prompt $" {
|
|
|
|
pass "help info proc"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "info proc" "No current process.*" "info proc without a process"
|
|
|
|
|
2004-02-02 05:15:27 +00:00
|
|
|
if { ! [ runto_main ] } then {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested info-proc.exp
|
|
|
|
return -1
|
2002-01-05 02:44:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "info proc" "process ${decimal}.*" "info proc with process"
|
|
|
|
|
|
|
|
gdb_test "info proc mapping" \
|
|
|
|
".*Mapped address spaces:.*${hex}${ws}${hex}${ws}${hex}${ws}${hex}.*" \
|
|
|
|
"info proc mapping"
|