1 # Test `
info auxv
' and related functionality.
3 # Copyright 1992,1993,1994,1995,1996,1997,1998,1999,2000,2004
4 # Free Software Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # Please email any bugs, comments, and/or additions to this file to:
21 # bug-gdb@prep.ai.mit.edu
23 # This file is based on corefile.exp which was written by Fred
24 # Fish. (fnf@cygnus.com)
34 set srcfile ${testfile}.c
35 set binfile ${objdir}/${subdir}/${testfile}
36 set corefile ${objdir}/${subdir}/${testfile}.corefile
37 set gcorefile ${objdir}/${subdir}/${testfile}.gcore
39 if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
40 untested "couldn't
compile $
{srcdir
}/$
{subdir
}/$
{srcfile
}"
44 # Use a fresh directory to confine the native core dumps.
45 # Make it the working directory
for gdb and its child.
46 set coredir
"${objdir}/${subdir}/coredir.[getpid]"
48 set core_works
[isnative
]
50 # Run GDB
on the test
program up to where it will dump core.
54 gdb_reinitialize_dir $srcdir
/$subdir
56 gdb_test
"set print sevenbit-strings" "" \
57 "set print sevenbit-strings; ${testfile}"
58 gdb_test
"set width 0" "" \
59 "set width 0; ${testfile}"
62 if {[gdb_test
"cd $coredir" ".*Working directory .*" \
63 "cd to temporary directory for core dumps"]} {
68 if { ![runto_main
] } then {
71 set print_core_line
[gdb_get_line_number
"ABORT;"]
72 gdb_test
"tbreak $print_core_line"
73 gdb_test
continue ".*ABORT;.*"
75 proc fetch_auxv
{test
} {
80 if {[gdb_test_multiple
"info auxv" $test {
81 -re
"info auxv\[\r\n\]+" {
84 -ex
"The program has no auxiliary information now" {
88 -ex
"Auxiliary vector is empty" {
92 -ex
"No auxiliary vector found" {
96 -re
"^\[0-9\]+\[ \t\]+(AT_\[^ \t\]+)\[^\r\n\]+\[\r\n\]+" {
97 lappend auxv_lines $expect_out
(0,string
)
100 -re
"^\[0-9\]+\[ \t\]+\\?\\?\\?\[^\r\n\]+\[\r\n\]+" {
101 warning
"Unrecognized tag value: $expect_out(0,string)"
103 lappend auxv_lines $expect_out
(0,string
)
106 -re
".*$gdb_prompt $" {
109 -re
"^\[^\r\n\]+\[\r\n\]+" {
111 warning
"Unrecognized output: $expect_out(0,string)"
129 set live_data
[fetch_auxv
"info auxv on live process"]
133 set escapedfilename
[string_to_regexp $gcorefile
]
134 gdb_test_multiple
"gcore $gcorefile" "gcore" {
135 -re
"Saved corefile ${escapedfilename}\[\r\n\]+$gdb_prompt $" {
139 -re
"Can't create a corefile\[\r\n\]+$gdb_prompt $" {
144 # Let the
program continue and die.
145 gdb_test
continue ".*Program received signal.*"
146 gdb_test
continue ".*Program terminated with signal.*"
148 # Now collect the core dump it left.
149 set test
"generate native core dump"
152 set names
[glob
-nocomplain
-directory $coredir
*core
*]
153 if {[llength $names
] == 1} {
154 set file
[file join $coredir
[lindex $names
0]]
155 remote_exec build
"mv $file $corefile"
159 warning
"can't generate a core file - core tests suppressed - check ulimit -c"
165 remote_exec build
"rm -rf $coredir"
167 # Now we can examine the core files and check that their data matches what
168 # we saw in the process. Note that the exact data can vary between runs
,
169 # so it
's important that the native core dump file and the gcore-created dump
170 # both be from the same run of the program as we examined live.
172 proc do_core_test {works corefile test1 test2} {
177 gdb_test "core $corefile" "Core was generated by.*" \
178 "load core file for $test1" \
179 "A program is being debugged already.*" "y"
180 set core_data [fetch_auxv $test1]
182 if {$core_data == $live_data} {
190 do_core_test $core_works $corefile \
191 "info auxv on native core dump" "matching auxv data from live and core"
193 do_core_test $gcore_works $gcorefile \
194 "info auxv on gcore-created dump" "matching auxv data from live and gcore"