📄 dump.exp
字号:
# Copyright 2002, 2004, 2007, 2008 Free Software Foundation, Inc.# 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/>.# Please email any bugs, comments, and/or additions to this file to:# bug-gdb@prep.ai.mit.edu# This file was written by Michael Snyder (msnyder@redhat.com)# This is a test for the gdb command "dump".if $tracelevel then { strace $tracelevel}set prms_id 0set bug_id 0set testfile "dump"set srcfile ${testfile}.cset binfile ${objdir}/${subdir}/${testfile}set options {debug}set is64bitonly "no"set endian "auto"if [istarget "alpha*-*-*"] then { # SREC etc cannot handle 64-bit addresses. Force the test # program into the low 31 bits of the address space. lappend options "additional_flags=-Wl,-taso"}if {[istarget "ia64*-*-*"] || [istarget "hppa64-*-*"]} then { set is64bitonly "yes"}if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable ${options}] != "" } { untested dump.exp return -1}# Start with a fresh gdb.gdb_exitgdb_startgdb_reinitialize_dir $srcdir/$subdirgdb_load ${binfile}# Clean up any stale output files from previous test runsremote_exec build "rm -f intarr1.bin intarr1b.bin intarr1.ihex intarr1.srec intarr1.tekhex intarr2.bin intarr2b.bin intarr2.ihex intarr2.srec intarr2.tekhex intstr1.bin intstr1b.bin intstr1.ihex intstr1.srec intstr1.tekhex intstr2.bin intstr2b.bin intstr2.ihex intstr2.srec intstr2.tekhex intarr3.srec"# Test help (FIXME:)# Run target program until data structs are initialized.if { ! [ runto checkpoint1 ] } then { untested dump.exp return -1}# Get the endianness for the later use with endianless formats.send_gdb "show endian\n"gdb_expect { -re ".* (big|little) endian.*$gdb_prompt $" { set endian $expect_out(1,string) pass "endianness: $endian" } default { fail "(timeout) getting target endianness" }}# Now generate some dump files.proc make_dump_file { command msg } { global gdb_prompt send_gdb "${command}\n" gdb_expect { -re ".*\[Ee\]rror.*$gdb_prompt $" { fail $msg } -re ".*\[Ww\]arning.*$gdb_prompt $" { fail $msg } -re ".*\[Uu\]ndefined .*$gdb_prompt $" { fail $msg } -re ".*$gdb_prompt $" { pass $msg } timeout { fail "$msg (timeout)" } }}make_dump_file "dump val intarr1.bin intarray" \ "dump array as value, default"make_dump_file "dump val intstr1.bin intstruct" \ "dump struct as value, default"make_dump_file "dump bin val intarr1b.bin intarray" \ "dump array as value, binary"make_dump_file "dump bin val intstr1b.bin intstruct" \ "dump struct as value, binary"make_dump_file "dump srec val intarr1.srec intarray" \ "dump array as value, srec"make_dump_file "dump srec val intstr1.srec intstruct" \ "dump struct as value, srec"make_dump_file "dump ihex val intarr1.ihex intarray" \ "dump array as value, intel hex"make_dump_file "dump ihex val intstr1.ihex intstruct" \ "dump struct as value, intel hex"make_dump_file "dump tekhex val intarr1.tekhex intarray" \ "dump array as value, tekhex"make_dump_file "dump tekhex val intstr1.tekhex intstruct" \ "dump struct as value, tekhex"proc capture_value { expression args } { global gdb_prompt global expect_out set output_string "" if {[llength $args] > 0} { # Convert $args into a simple string. set test "[join $args]; capture $expression" } { set test "capture $expression" } gdb_test_multiple "print ${expression}" "$test" { -re "\\$\[0-9\]+ = (\[^\r\n\]+).*$gdb_prompt $" { set output_string "$expect_out(1,string)" pass "$test" } -re "(Cannot access memory at address \[^\r\n\]+).*$gdb_prompt $" { # Even a failed value is valid set output_string "$expect_out(1,string)" pass "$test" } } return $output_string}set array_start [capture_value "/x &intarray\[0\]"]set array_end [capture_value "/x &intarray\[32\]"]set struct_start [capture_value "/x &intstruct"]set struct_end [capture_value "/x &intstruct + 1"]set array_val [capture_value "intarray"]set struct_val [capture_value "intstruct"]make_dump_file "dump mem intarr2.bin $array_start $array_end" \ "dump array as memory, default"make_dump_file "dump mem intstr2.bin $struct_start $struct_end" \ "dump struct as memory, default"make_dump_file "dump bin mem intarr2b.bin $array_start $array_end" \ "dump array as memory, binary"make_dump_file "dump bin mem intstr2b.bin $struct_start $struct_end" \ "dump struct as memory, binary"make_dump_file "dump srec mem intarr2.srec $array_start $array_end" \ "dump array as memory, srec"make_dump_file "dump srec mem intstr2.srec $struct_start $struct_end" \ "dump struct as memory, srec"make_dump_file "dump ihex mem intarr2.ihex $array_start $array_end" \ "dump array as memory, ihex"make_dump_file "dump ihex mem intstr2.ihex $struct_start $struct_end" \ "dump struct as memory, ihex"make_dump_file "dump tekhex mem intarr2.tekhex $array_start $array_end" \ "dump array as memory, tekhex"make_dump_file "dump tekhex mem intstr2.tekhex $struct_start $struct_end" \ "dump struct as memory, tekhex"# test complex expressionsmake_dump_file \ "dump srec mem intarr3.srec &intarray \(char *\) &intarray + sizeof intarray" \ "dump array as mem, srec, expressions"# Now start a fresh gdb session, and reload the saved value files.gdb_exitgdb_startgdb_file_cmd ${binfile}# Now fix the endianness at the correct state.send_gdb "set endian $endian\n"gdb_expect { -re ".* (big|little) endian.*$gdb_prompt $" { pass "setting $endian endianness" } default { fail "(timeout) setting $endian endianness" }}# Reload saved values one by one, and compare.if { ![string compare $array_val \ [capture_value "intarray" "file binfile"]] } then { fail "start with intarray un-initialized"} else { pass "start with intarray un-initialized"}if { ![string compare $struct_val \ [capture_value "intstruct" "file binfile"]] } then { fail "start with intstruct un-initialized"} else { pass "start with intstruct un-initialized"}proc test_reload_saved_value { filename msg oldval newval } { global gdb_prompt gdb_file_cmd $filename if { ![string compare $oldval \ [capture_value $newval "$msg"]] } then { pass "$msg; value restored ok" } else { fail "$msg; value restored ok" }}proc test_restore_saved_value { restore_args msg oldval newval } { global gdb_prompt gdb_test "restore $restore_args" \ "Restoring .*" \ "$msg; file restored ok" if { ![string compare $oldval \ [capture_value $newval "$msg"]] } then { pass "$msg; value restored ok" } else {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -