📄 objdbg03.exp
字号:
# Test reading debug information from in object files.if { [skip_hp_tests] } { continue }if { ![istarget "hppa*-*-hpux*"] } { verbose "HPUX test ignored for non-hppa targets." return 0}set testfile "test"set srcsubdir ${srcdir}/${subdir}/objdbg03set objdbgdir ${objdir}/${subdir}/objdbg03set binfile ${objdbgdir}/${testfile}set toolssubdir ${srcdir}/${subdir}/toolsif [istarget "hppa2.0w-*-*"] { set symaddrfile ${toolssubdir}/symaddr.pa64} else { set symaddrfile ${toolssubdir}/symaddr}if { [gdb_compile "${toolssubdir}/test-objdbg.cc" "${objdbgdir}/test-objdbg.o" object "debug c++ {additional_flags=-I${toolssubdir} +objdebug}"] != "" } { gdb_suppress_entire_file "WARNING: +objdebug option is not supported in this compiler version, test ignored."}if { [gdb_compile "${srcsubdir}/x1.cc" "${objdbgdir}/x1.o" object "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } { perror "Couldn't compile x1.cc" return -1}if { [gdb_compile "${srcsubdir}/x2.cc" "${objdbgdir}/x2.o" object "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } { perror "Couldn't compile x2.cc" return -1}if { [gdb_compile "${srcsubdir}/x3.cc" "${objdbgdir}/x3.o" object "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } { perror "Couldn't compile x3.cc" return -1}if { [gdb_compile "${objdbgdir}/x1.o ${objdbgdir}/x2.o ${objdbgdir}/x3.o" "${binfile}" executable "debug c++ {additional_flags=-I${srcsubdir} +objdebug}"] != "" } { perror "Couldn't compile ${binfile}" return -1}## Test some normal commons## Print the typesgdb_exitgdb_startgdb_reinitialize_dir ${srcsubdir}gdb_load ${binfile}gdb_test "ptype common1" "type = int"gdb_test "ptype common2" "type = int"gdb_test "ptype common3" "type = int"gdb_test "ptype data1" "type = int"gdb_test "ptype data2" "type = int"gdb_test "ptype data3" "type = int"gdb_test "ptype common11" "type = int"gdb_test "ptype common10" "type = int"gdb_test "ptype data10" "type = int"gdb_test "ptype data11" "type = int"# Print the valuesgdb_exitgdb_startgdb_reinitialize_dir ${srcsubdir}gdb_load ${binfile}gdb_test "b main" "Breakpoint \[0-9\]+ at 0x\[0-9a-f\]+: file ..*/x1.cc, line 11."gdb_test "run" "Starting program:.*Breakpoint \[0-9\]+, main .*/x1.cc:11.*"gdb_test "p data1" "..* = 1"gdb_test "p data2" "..* = 2"gdb_test "p data3" "..* = 3"gdb_test "p data10" "..* = 10"gdb_test "p data11" "..* = 11"gdb_test "n" ".*12.*"gdb_test "p common11" "..* = 11"gdb_test "s 1" "foo .*/x3.cc:15.*"gdb_test "s 4" ".*20.*"gdb_test "p data4" "..* = 4"gdb_test "p common4" "..* = 4"gdb_test "n" ".*21.*"gdb_test "n" "main .*/x1.cc:14.*"gdb_test "p common1" "..* = 1"gdb_test "p common2" "..* = 2"gdb_test "p common3" "..* = 3"# Verify that addresses match those in the executablegdb_exitgdb_startgdb_reinitialize_dir ${srcsubdir}gdb_load ${binfile}set exec_output_data1 [lindex [remote_exec build "${symaddrfile} ${binfile} data1"] 1]regsub -all "\[\r\n\]" ${exec_output_data1} "" exec_output_data1set exec_output_data2 [lindex [remote_exec build "${symaddrfile} ${binfile} data2"] 1]regsub -all "\[\r\n\]" ${exec_output_data2} "" exec_output_data2set exec_output_data3 [lindex [remote_exec build "${symaddrfile} ${binfile} data3"] 1]regsub -all "\[\r\n\]" ${exec_output_data3} "" exec_output_data3set exec_output_data10 [lindex [remote_exec build "${symaddrfile} ${binfile} data10"] 1]regsub -all "\[\r\n\]" ${exec_output_data10} "" exec_output_data10set exec_output_data11 [lindex [remote_exec build "${symaddrfile} ${binfile} data11"] 1]regsub -all "\[\r\n\]" ${exec_output_data11} "" exec_output_data11set exec_output_common1 [lindex [remote_exec build "${symaddrfile} ${binfile} common1"] 1]regsub -all "\[\r\n\]" ${exec_output_common1} "" exec_output_common1set exec_output_common2 [lindex [remote_exec build "${symaddrfile} ${binfile} common2"] 1]regsub -all "\[\r\n\]" ${exec_output_common2} "" exec_output_common2set exec_output_common3 [lindex [remote_exec build "${symaddrfile} ${binfile} common3"] 1]regsub -all "\[\r\n\]" ${exec_output_common3} "" exec_output_common3set exec_output_common10 [lindex [remote_exec build "${symaddrfile} ${binfile} common10"] 1]regsub -all "\[\r\n\]" ${exec_output_common10} "" exec_output_common10set exec_output_common11 [lindex [remote_exec build "${symaddrfile} ${binfile} common11"] 1]regsub -all "\[\r\n\]" ${exec_output_common11} "" exec_output_common11if [istarget "hppa2.0w-*-*"] { gdb_test "p &data1" "..* = \\(int \[*\]\\) ${exec_output_data1}" gdb_test "p &data2" "..* = \\(int \[*\]\\) ${exec_output_data2}" gdb_test "p &data3" "..* = \\(int \[*\]\\) ${exec_output_data3}" gdb_test "p &data10" "..* = \\(int \[*\]\\) ${exec_output_data10}" gdb_test "p &data11" "..* = \\(int \[*\]\\) ${exec_output_data11}" gdb_test "p &common1" "..* = \\(int \[*\]\\) ${exec_output_common1}" gdb_test "p &common2" "..* = \\(int \[*\]\\) ${exec_output_common2}" gdb_test "p &common3" "..* = \\(int \[*\]\\) ${exec_output_common3}" gdb_test "p &common10" "..* = \\(int \[*\]\\) ${exec_output_common10}" gdb_test "p &common11" "..* = \\(int \[*\]\\) ${exec_output_common11}"} else { gdb_test "p &data1" "..* = \\(int \[*\]\\) 0x${exec_output_data1}" gdb_test "p &data2" "..* = \\(int \[*\]\\) 0x${exec_output_data2}" gdb_test "p &data3" "..* = \\(int \[*\]\\) 0x${exec_output_data3}" gdb_test "p &data10" "..* = \\(int \[*\]\\) 0x${exec_output_data10}" gdb_test "p &data11" "..* = \\(int \[*\]\\) 0x${exec_output_data11}" gdb_test "p &common1" "..* = \\(int \[*\]\\) 0x${exec_output_common1}" gdb_test "p &common2" "..* = \\(int \[*\]\\) 0x${exec_output_common2}" gdb_test "p &common3" "..* = \\(int \[*\]\\) 0x${exec_output_common3}" gdb_test "p &common10" "..* = \\(int \[*\]\\) 0x${exec_output_common10}" gdb_test "p &common11" "..* = \\(int \[*\]\\) 0x${exec_output_common11}"}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -