diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-25 15:34:46 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-06-25 15:34:46 +0000 |
commit | 5868a6328778ab92661f992c78ec9113b0473b12 (patch) | |
tree | 7bf12dbbe4b61d8f4f0fc97a476dc0d76d781cdf /gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp | |
parent | af76db58d70f013feb5e5854ea8bd23929275b7b (diff) | |
download | gdb-5868a6328778ab92661f992c78ec9113b0473b12.zip gdb-5868a6328778ab92661f992c78ec9113b0473b12.tar.gz gdb-5868a6328778ab92661f992c78ec9113b0473b12.tar.bz2 |
gdb/testsuite/
Test PR python/11407.
* gdb.dwarf2/dw2-ref-missing-frame-func.c: New file.
* gdb.dwarf2/dw2-ref-missing-frame.S: Use cu_text_start and cu_text_end.
Split main into func_nofb and func_loopfb dropping NO_FRAME_BASE.
* gdb.dwarf2/dw2-ref-missing-frame.exp: Remove variables sources,
executable_nofb and executable_fb. New variables srcsfile, objsfile,
srcfuncfile, objfuncfile, srcmainfile, objmainfile, executable and
binfile. Call gdb_compile with clean_restart twice.
(func_nofb print, func_nofb backtrace, func_loopfb print)
(func_loopfb backtrace): New.
Diffstat (limited to 'gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp')
-rw-r--r-- | gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp | 37 |
1 files changed, 24 insertions, 13 deletions
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp b/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp index a508bde..d2874ba 100644 --- a/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp +++ b/gdb/testsuite/gdb.dwarf2/dw2-ref-missing-frame.exp @@ -25,25 +25,36 @@ if {![istarget *-*-linux*] } set testfile "dw2-ref-missing-frame" -set sources [list ${testfile}-main.c ${testfile}.S] +set srcsfile ${testfile}.S +set objsfile ${objdir}/${subdir}/${testfile}.o +set srcfuncfile ${testfile}-func.c +set objfuncfile ${objdir}/${subdir}/${testfile}-func.o +set srcmainfile ${testfile}-main.c +set objmainfile ${objdir}/${subdir}/${testfile}-main.o +set executable ${testfile} +set binfile ${objdir}/${subdir}/${executable} -# First try referencing DW_AT_frame_base which is not defined. -set executable_nofb ${testfile}-nofb -if { [prepare_for_testing ${testfile}.exp $executable_nofb $sources {nodebug additional_flags=-DNO_FRAME_BASE}] } { +if { [gdb_compile "${srcdir}/${subdir}/${srcsfile}" $objsfile object {}] != "" + || [gdb_compile "${srcdir}/${subdir}/${srcfuncfile}" $objfuncfile object {}] != "" + || [gdb_compile "${srcdir}/${subdir}/${srcmainfile}" $objmainfile object {debug}] != "" + || [gdb_compile "$objsfile $objfuncfile $objmainfile" $binfile executable {}] != "" } { return -1 } -if [runto_main] { - gdb_test "p main_var" {Could not find the frame base for "main".} +clean_restart $executable + +# First try referencing DW_AT_frame_base which is not defined. +if [runto func_nofb] { + gdb_test "p func_nofb_var" {Could not find the frame base for "func_nofb".} "func_nofb print" + gdb_test "bt full" " in main .* main_var = 1" "func_nofb backtrace" } +# GDB could have crashed. +clean_restart $executable + # And now try referencing DW_AT_frame_base defined using a self-reference # (DW_OP_fbreg). -set executable_fb ${testfile}-fb -if { [prepare_for_testing ${testfile}.exp $executable_fb $sources {nodebug}] } { - return -1 -} - -if [runto_main] { - gdb_test "p main_var" "DWARF-2 expression error: Loop detected .*" +if [runto func_loopfb] { + gdb_test "p func_loopfb_var" "DWARF-2 expression error: Loop detected .*" "func_loopfb print" + gdb_test "bt full" " in main .* main_var = 1" "func_loopfb backtrace" } |