2016-01-01 04:33:14 +00:00
|
|
|
# Copyright 2015-2016 Free Software Foundation, Inc.
|
2015-02-21 14:24:20 +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
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Test ability to load an elf64-i386 core file. The provided core file was
|
|
|
|
# elf64-x8664 one but it got binary patched to i386:
|
|
|
|
# Elf32_Ehdr.e_machine @0x12..0x13
|
|
|
|
# Elf64_Ehdr.e_machine @0x12..0x13
|
|
|
|
# #define EM_386 3 /* Intel 80386 */
|
|
|
|
# #define EM_X86_64 62 /* AMD x86-64 architecture */
|
|
|
|
# patch @0x12: 0x3E -> 0x03
|
|
|
|
|
|
|
|
standard_testfile
|
|
|
|
|
2015-07-16 16:01:22 +00:00
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
|
|
|
|
set test "complete set gnutarget"
|
|
|
|
gdb_test_multiple "complete set gnutarget " $test {
|
|
|
|
-re "set gnutarget elf64-little\r\n(.*\r\n)?$gdb_prompt $" {
|
|
|
|
pass $test
|
|
|
|
}
|
|
|
|
-re "\r\n$gdb_prompt $" {
|
|
|
|
pass $test
|
|
|
|
untested ".text is readable"
|
|
|
|
return
|
|
|
|
}
|
2015-02-21 14:24:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set corebz2file ${srcdir}/${subdir}/${testfile}.core.bz2
|
|
|
|
set corefile ${objdir}/${subdir}/${testfile}.core
|
|
|
|
# Entry point of the original executable.
|
|
|
|
set address 0x400078
|
|
|
|
|
|
|
|
if {[catch "system \"bzip2 -dc ${corebz2file} >${corefile}\""] != 0} {
|
|
|
|
untested "failed bzip2"
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
file stat ${corefile} corestat
|
|
|
|
if {$corestat(size) != 102400} {
|
|
|
|
untested "bzip2 produces invalid result"
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Wrongly built GDB complains by:
|
|
|
|
# "..." is not a core dump: File format not recognized
|
|
|
|
# As the provided test core has 64bit PRSTATUS i386 built GDB cannot parse it.
|
2015-07-14 17:50:20 +00:00
|
|
|
# This is just a problem of the test case, real-world elf64-i386 file will have
|
2015-02-21 14:24:20 +00:00
|
|
|
# 32bit PRSTATUS. One cannot prepare elf64-i386 core file from elf32-i386 by
|
|
|
|
# objcopy as it corrupts the core file beyond all recognition.
|
2015-07-16 16:01:22 +00:00
|
|
|
# The output therefore does not matter much, just we should not get GDB
|
|
|
|
# internal error.
|
|
|
|
gdb_test "core-file ${corefile}" ".*" "core-file"
|
2015-02-21 14:24:20 +00:00
|
|
|
|
2015-07-16 16:01:22 +00:00
|
|
|
# Test if at least the core file segments memory has been loaded.
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=457187
|
|
|
|
gdb_test "x/bx $address" "\r\n\[ \t\]*$address:\[ \t\]*0xf4\[ \t\]*" ".text is readable"
|