OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [gdb/] [testsuite/] [gdb.hp/] [gdb.defects/] [solib-d.exp] - Diff between revs 24 and 33

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
#   Copyright (C) 1997, 2007, 2008 Free Software Foundation, Inc.
#   Copyright (C) 1997, 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# 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
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .  */
# along with this program.  If not, see .  */
# This file was written by srikanth (with huge chunks borrowed from old ones)
# This file was written by srikanth (with huge chunks borrowed from old ones)
#
#
# Regression test for
# Regression test for
#
#
#     CLLbs14756
#     CLLbs14756
#
#
#         o catch load command does not stop for implicit loads.
#         o catch load command does not stop for implicit loads.
#
#
#     CLLbs15382
#     CLLbs15382
#
#
#         o sharedlibrary command ignores its argument and ends
#         o sharedlibrary command ignores its argument and ends
#           up loading every shared library there is ...
#           up loading every shared library there is ...
#
#
#     CLLbs15582
#     CLLbs15582
#
#
#         o info line non-existent-function dumps core
#         o info line non-existent-function dumps core
#         o clear non-existent function dumps core
#         o clear non-existent function dumps core
#         o xbreak non-existent-function dumps core
#         o xbreak non-existent-function dumps core
#
#
#     CLLbs15725
#     CLLbs15725
#
#
#         o gdb prints static and extern variables in shlibs incorrectly.
#         o gdb prints static and extern variables in shlibs incorrectly.
#
#
#     CLLbs16090
#     CLLbs16090
#
#
#         o deferred breakpoints should kick in for shlibs loaded explicitly
#         o deferred breakpoints should kick in for shlibs loaded explicitly
#           with the sharedlibrary command.
#           with the sharedlibrary command.
#         o GDB confuses export stubs with actual function.
#         o GDB confuses export stubs with actual function.
#
#
#
#
if $tracelevel {
if $tracelevel {
    strace $tracelevel
    strace $tracelevel
}
}
if { [skip_hp_tests] } { continue }
if { [skip_hp_tests] } { continue }
set prms_id 0
set prms_id 0
set bug_id 0
set bug_id 0
# are we on a target board
# are we on a target board
if ![isnative] {
if ![isnative] {
    return
    return
}
}
# This test is presently only valid on HP-UX, since it requires
# This test is presently only valid on HP-UX, since it requires
# that we use HP-UX-specific compiler & linker options to build
# that we use HP-UX-specific compiler & linker options to build
# the testcase.
# the testcase.
#
#
setup_xfail "*-*-*"
setup_xfail "*-*-*"
clear_xfail "hppa*-*-*hpux*"
clear_xfail "hppa*-*-*hpux*"
set prototypes 0
set prototypes 0
set testfile "solib-d"
set testfile "solib-d"
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
set testfile1 ${objdir}/${subdir}/${testfile}1.o
set testfile1 ${objdir}/${subdir}/${testfile}1.o
set testfile2 ${objdir}/${subdir}/${testfile}2.o
set testfile2 ${objdir}/${subdir}/${testfile}2.o
set libfile1 ${objdir}/${subdir}/${testfile}1.sl
set libfile1 ${objdir}/${subdir}/${testfile}1.sl
set libfile2 ${objdir}/${subdir}/${testfile}2.sl
set libfile2 ${objdir}/${subdir}/${testfile}2.sl
# Create and source the file that provides information about the compiler
# Create and source the file that provides information about the compiler
# used to compile the test case.
# used to compile the test case.
if [get_compiler_info ${binfile}] {
if [get_compiler_info ${binfile}] {
    return -1;
    return -1;
}
}
# set up appropriate compile option to recognize long double
# set up appropriate compile option to recognize long double
if {$hp_aCC_compiler || $hp_cc_compiler} {
if {$hp_aCC_compiler || $hp_cc_compiler} {
    set picflag "+z"
    set picflag "+z"
    set ansiflag "-Ae"
    set ansiflag "-Ae"
} else {
} else {
    set picflag "-fpic"
    set picflag "-fpic"
    set ansiflag ""
    set ansiflag ""
}
}
# Build the shared libraries this test case needs.
# Build the shared libraries this test case needs.
#
#
#cd ${subdir}
#cd ${subdir}
if { [gdb_compile "${srcdir}/${subdir}/${testfile}1.c" "${testfile1}" object "{debug additional_flags=${picflag}}"] != "" } {
if { [gdb_compile "${srcdir}/${subdir}/${testfile}1.c" "${testfile1}" object "{debug additional_flags=${picflag}}"] != "" } {
    perror "Couldn't compile ${testfile}1.c"
    perror "Couldn't compile ${testfile}1.c"
    return -1
    return -1
}
}
if { [gdb_compile "${srcdir}/${subdir}/${testfile}2.c" "${testfile2}" object "{debug additional_flags=${picflag}}"] != ""} {
if { [gdb_compile "${srcdir}/${subdir}/${testfile}2.c" "${testfile2}" object "{debug additional_flags=${picflag}}"] != ""} {
    perror "Couldn't compile ${testfile}2.c"
    perror "Couldn't compile ${testfile}2.c"
    return -1
    return -1
}
}
remote_exec build "ld -b ${testfile1} -o ${libfile1}"
remote_exec build "ld -b ${testfile1} -o ${libfile1}"
remote_exec build "ld -b ${testfile2} -o ${libfile2}"
remote_exec build "ld -b ${testfile2} -o ${libfile2}"
# Build the test case
# Build the test case
if { [gdb_compile "${srcdir}/${subdir}/${srcfile} ${libfile1} ${libfile2}" "${binfile}" executable "{debug additional_flags=${ansiflag} -Wl,-aarchive}"] != "" } {
if { [gdb_compile "${srcdir}/${subdir}/${srcfile} ${libfile1} ${libfile2}" "${binfile}" executable "{debug additional_flags=${ansiflag} -Wl,-aarchive}"] != "" } {
    perror "Couldn't build ${binfile}"
    perror "Couldn't build ${binfile}"
    return -1
    return -1
}
}
# Start with a fresh gdb
# Start with a fresh gdb
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
# Verify that we can set a generic catchpoint on shlib loads.  I.e., that
# Verify that we can set a generic catchpoint on shlib loads.  I.e., that
# we can catch any shlib load, without specifying the name.
# we can catch any shlib load, without specifying the name.
#
#
gdb_test "catch load" "Catchpoint \[0-9\]* .load .*" \
gdb_test "catch load" "Catchpoint \[0-9\]* .load .*" \
    "set generic catch load"
    "set generic catch load"
# Verify that implicit shlib loads are caught and reported.
# Verify that implicit shlib loads are caught and reported.
send_gdb "run\n"
send_gdb "run\n"
gdb_expect {
gdb_expect {
    -re ".*solib-d1.*$gdb_prompt $" {
    -re ".*solib-d1.*$gdb_prompt $" {
        pass "Catch implicit load at startup"
        pass "Catch implicit load at startup"
    }
    }
    -re "Program exited.*$gdb_prompt $" {
    -re "Program exited.*$gdb_prompt $" {
        fail "CLLbs14756 || CLLbs16090 came back ???"
        fail "CLLbs14756 || CLLbs16090 came back ???"
    }
    }
    timeout { fail "(timeout) implicit library load" }
    timeout { fail "(timeout) implicit library load" }
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
if ![runto_main] { fail "breakpoint at main did not trigger ?" }
if ![runto_main] { fail "breakpoint at main did not trigger ?" }
# verify that we print globals from shlibs correctly.
# verify that we print globals from shlibs correctly.
gdb_test "p global_from_primary" " = 5678" \
gdb_test "p global_from_primary" " = 5678" \
    "print global from shlib (CLLbs15725)"
    "print global from shlib (CLLbs15725)"
gdb_test "p global_from_secondary" " = 9012" \
gdb_test "p global_from_secondary" " = 9012" \
    "print global from shlib (CLLbs15725)"
    "print global from shlib (CLLbs15725)"
# verify that we print static variables from shlibs correctly.
# verify that we print static variables from shlibs correctly.
if { ![runto function_from_primary] } { return }
if { ![runto function_from_primary] } { return }
gdb_test "p file_static" " = 1234" "print file static variable (CLLbs15725)"
gdb_test "p file_static" " = 1234" "print file static variable (CLLbs15725)"
if { ![runto function_from_secondary] } { return }
if { ![runto function_from_secondary] } { return }
gdb_test "p local_static" " = 3456" "print local static variable (CLLbs15725)"
gdb_test "p local_static" " = 3456" "print local static variable (CLLbs15725)"
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
gdb_test "set auto-solib-add 0" "" "turn off auto shlib debug loading"
gdb_test "set auto-solib-add 0" "" "turn off auto shlib debug loading"
if ![runto_main] {
if ![runto_main] {
    perror "C function calling tests suppressed"
    perror "C function calling tests suppressed"
}
}
# verify that "clear non-existent-symbol" does not crash
# verify that "clear non-existent-symbol" does not crash
gdb_test "clear junkfunc" "Location not found.*" \
gdb_test "clear junkfunc" "Location not found.*" \
    "clear non-existent function does not dump core !"
    "clear non-existent function does not dump core !"
# verify that "info line non-existent-symbol" does not crash
# verify that "info line non-existent-symbol" does not crash
gdb_test "info line junkfunc" "Location not found.*" \
gdb_test "info line junkfunc" "Location not found.*" \
    "info line junkfunc does not dump core !"
    "info line junkfunc does not dump core !"
# verify that "xbreak non-existent-symbol" does not crash
# verify that "xbreak non-existent-symbol" does not crash
gdb_test "xbreak junkfunc" "Function \"junkfunc\" not defined.*" \
gdb_test "xbreak junkfunc" "Function \"junkfunc\" not defined.*" \
    "xbreak junkfunc does not dump core !"
    "xbreak junkfunc does not dump core !"
gdb_test "list function_from_primary" \
gdb_test "list function_from_primary" \
    "No line number known for function_from_primary.*" \
    "No line number known for function_from_primary.*" \
    "turning off auto shlib debug loading"
    "turning off auto shlib debug loading"
send_gdb "sharedlibrary solib-d1\n"
send_gdb "sharedlibrary solib-d1\n"
gdb_expect {
gdb_expect {
    -re "Reading symbols from.*solib-d1.*$gdb_prompt $" {
    -re "Reading symbols from.*solib-d1.*$gdb_prompt $" {
        pass "loading primary library on demand (1)"
        pass "loading primary library on demand (1)"
    }
    }
    -re "--Adding symbols for shared library.*solib-d1.*$gdb_prompt $" {
    -re "--Adding symbols for shared library.*solib-d1.*$gdb_prompt $" {
        pass "loading primary library on demand (2)"
        pass "loading primary library on demand (2)"
    }
    }
    -re "$gdb_prompt $" { fail "loading primary library on demand (3)" }
    -re "$gdb_prompt $" { fail "loading primary library on demand (3)" }
    timeout { fail "(timeout) loading primary library on demand" }
    timeout { fail "(timeout) loading primary library on demand" }
}
}
# make sure that load above of primary also did not pull in secondary.
# make sure that load above of primary also did not pull in secondary.
send_gdb "list function_from_secondary\n"
send_gdb "list function_from_secondary\n"
gdb_expect {
gdb_expect {
    -re "No symbol.*context.*$gdb_prompt $" {
    -re "No symbol.*context.*$gdb_prompt $" {
        pass "loaded only what we needed (1)"
        pass "loaded only what we needed (1)"
    }
    }
    -re "No line number known for function_from_secondary.*$gdb_prompt $" {
    -re "No line number known for function_from_secondary.*$gdb_prompt $" {
        pass "loaded only what we needed (2)"
        pass "loaded only what we needed (2)"
    }
    }
    -re ".*9012.*$gdb_prompt $" { fail "Oops ! CLLbs15382 came back ?" }
    -re ".*9012.*$gdb_prompt $" { fail "Oops ! CLLbs15382 came back ?" }
    timeout { fail "(timeout) printing global" }
    timeout { fail "(timeout) printing global" }
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
gdb_test "set auto-solib-add 0" "" "turn off auto shlib debug loading"
gdb_test "set auto-solib-add 0" "" "turn off auto shlib debug loading"
gdb_test "set stop-on-solib-event 1" "" "stop-on-solib-event"
gdb_test "set stop-on-solib-event 1" "" "stop-on-solib-event"
# verify that we set breakpoint on the function and not the export stub
# verify that we set breakpoint on the function and not the export stub
# used to be that we set bp on the export stub of _start and thus miss
# used to be that we set bp on the export stub of _start and thus miss
# shlib loads in some cases (where the stub exists)
# shlib loads in some cases (where the stub exists)
send_gdb "run\n"
send_gdb "run\n"
gdb_expect {
gdb_expect {
    -re "Stopped due to shared library event.*$gdb_prompt $" {
    -re "Stopped due to shared library event.*$gdb_prompt $" {
        pass "stop for shlib event"
        pass "stop for shlib event"
    }
    }
    -re "Program exited.*$gdb_prompt $" {
    -re "Program exited.*$gdb_prompt $" {
        fail "Bug CLLbs16090 came back ?"
        fail "Bug CLLbs16090 came back ?"
    }
    }
    timeout { fail "(timeout) stop for shlib event " }
    timeout { fail "(timeout) stop for shlib event " }
}
}
gdb_test "b main" "Breakpoint 1 at.*" "set breakpoint on main"
gdb_test "b main" "Breakpoint 1 at.*" "set breakpoint on main"
gdb_test "set stop-on-solib-event 0" "" "stop-on-solib-event (timeout)"
gdb_test "set stop-on-solib-event 0" "" "stop-on-solib-event (timeout)"
# verify that we set breakpoint on the function and not the export stub
# verify that we set breakpoint on the function and not the export stub
gdb_test "cont" "Breakpoint 1.*main.*" "run to main"
gdb_test "cont" "Breakpoint 1.*main.*" "run to main"
# On PA64 we read in the unwind info and linker symbol table which lets
# On PA64 we read in the unwind info and linker symbol table which lets
# us set the breakpoint and not defer it.
# us set the breakpoint and not defer it.
send_gdb "b garbage\n"
send_gdb "b garbage\n"
gdb_expect {
gdb_expect {
    -re "Breakpoint.*deferred.*garbage.*library containing.*is loaded.*$gdb_prompt $" {
    -re "Breakpoint.*deferred.*garbage.*library containing.*is loaded.*$gdb_prompt $" {
        pass " set deferred breakpoint (1)"
        pass " set deferred breakpoint (1)"
    }
    }
    -re "Breakpoint 2 at 0x.*$gdb_prompt $" {
    -re "Breakpoint 2 at 0x.*$gdb_prompt $" {
        pass " set deferred breakpoint (2)"
        pass " set deferred breakpoint (2)"
    }
    }
    -re "$gdb_prompt $" { fail " set deferred breakpoint (3)" }
    -re "$gdb_prompt $" { fail " set deferred breakpoint (3)" }
    timeout { fail "(timeout) set deferred breakpoint" }
    timeout { fail "(timeout) set deferred breakpoint" }
}
}
# make sure that the sharedlibrary command enables any deferred breakpoints
# make sure that the sharedlibrary command enables any deferred breakpoints
# that it should.
# that it should.
send_gdb "sharedlibrary lib\n"
send_gdb "sharedlibrary lib\n"
gdb_expect {
gdb_expect {
    -re "Reading.*solib-d1.*$gdb_prompt $" {
    -re "Reading.*solib-d1.*$gdb_prompt $" {
        pass "load up all shared libs (1)"
        pass "load up all shared libs (1)"
    }
    }
    -re "Loading.*dld.sl.*--Adding symbols.*solib-d1.*$gdb_prompt $" {
    -re "Loading.*dld.sl.*--Adding symbols.*solib-d1.*$gdb_prompt $" {
        pass "load up all shared libs (2)"
        pass "load up all shared libs (2)"
    }
    }
    -re "$gdb_prompt $" { fail "load up all libraries" }
    -re "$gdb_prompt $" { fail "load up all libraries" }
    timeout { fail "(timeout) load all libraries " }
    timeout { fail "(timeout) load all libraries " }
}
}
# do we stop at garbage ? If yes ok.
# do we stop at garbage ? If yes ok.
gdb_test "cont" "Breakpoint.*garbage.*" "deferred breakpoint enabled"
gdb_test "cont" "Breakpoint.*garbage.*" "deferred breakpoint enabled"
gdb_exit
gdb_exit
return 0
return 0
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.