2013-01-01 06:33:28 +00:00
|
|
|
# Copyright 2002-2013 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"
|
|
|
|
|
|
|
|
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}
|
|
|
|
|
2012-01-20 09:49:01 +00:00
|
|
|
gdb_test "help info proc" "Show /proc process information about .*"
|
2002-01-05 02:44:07 +00:00
|
|
|
|
2012-06-06 08:47:04 +00:00
|
|
|
gdb_test_multiple "info proc" "info proc without a process" {
|
|
|
|
-re "No current process.*$gdb_prompt $" {
|
|
|
|
pass "info proc without a process"
|
|
|
|
}
|
2012-01-20 09:49:01 +00:00
|
|
|
-re "Not supported on this target.*$gdb_prompt $" {
|
|
|
|
# info proc command not supported -- nothing to test here.
|
|
|
|
unsupported "gdb does not support info proc on this target"
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2002-01-05 02:44:07 +00:00
|
|
|
|
2012-06-06 08:47:04 +00:00
|
|
|
if { ! [ runto_main ] } then {
|
|
|
|
untested info-proc.exp
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "info proc" "process ${decimal}.*" "info proc with process"
|
|
|
|
|
2002-01-05 02:44:07 +00:00
|
|
|
gdb_test "info proc mapping" \
|
|
|
|
".*Mapped address spaces:.*${hex}${ws}${hex}${ws}${hex}${ws}${hex}.*" \
|
|
|
|
"info proc mapping"
|
2012-12-14 15:30:38 +00:00
|
|
|
|
|
|
|
if {[istarget "*-*-linux*"]} {
|
|
|
|
set gcorefile [standard_output_file $testfile.gcore]
|
|
|
|
if {[gdb_gcore_cmd $gcorefile "save a core file"]} {
|
|
|
|
clean_restart $binfile
|
|
|
|
|
|
|
|
gdb_test "core $gcorefile" "Core was generated by.*" \
|
|
|
|
"core [file tail $gcorefile]"
|
|
|
|
|
|
|
|
gdb_test "info proc mapping" \
|
|
|
|
".*Mapped address spaces:.*${hex}${ws}${hex}${ws}${hex}${ws}${hex}.*" \
|
|
|
|
"info proc mapping with core file"
|
|
|
|
}
|
|
|
|
}
|