diff options
author | Alan Modra <amodra@gmail.com> | 2004-09-24 07:07:22 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2004-09-24 07:07:22 +0000 |
commit | 1ba54ee0206e3d32ee062d24d8342cd713ab4a0a (patch) | |
tree | 371f2e8f556d79b4586c1190306581fdcda8d595 /ld/testsuite | |
parent | 5efb626185b9820d357696c1ade63ec19b24a80d (diff) | |
download | gdb-1ba54ee0206e3d32ee062d24d8342cd713ab4a0a.zip gdb-1ba54ee0206e3d32ee062d24d8342cd713ab4a0a.tar.gz gdb-1ba54ee0206e3d32ee062d24d8342cd713ab4a0a.tar.bz2 |
bfd/
* dwarf2.c (_bfd_dwarf2_find_nearest_line): Add output section
vma and output offset to address.
* simple.c (simple_save_output_info): Only set output section
and offset for debug sections, or those not already set up by
the linker.
(bfd_simple_get_relocated_section_contents): Update comment.
ld/testsuite/
* ld-elfvsb/elfvsb.exp: Remove file name from "undefined ref" string.
Diffstat (limited to 'ld/testsuite')
-rw-r--r-- | ld/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-elfvsb/elfvsb.exp | 20 |
2 files changed, 14 insertions, 10 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 83e2548..4546a2b 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-09-24 Alan Modra <amodra@bigpond.net.au> + + * ld-elfvsb/elfvsb.exp: Remove file name from "undefined ref" string. + 2004-09-22 Alan Modra <amodra@bigpond.net.au> * ld-i386/tlsbin.rd: Update for changed segment map. diff --git a/ld/testsuite/ld-elfvsb/elfvsb.exp b/ld/testsuite/ld-elfvsb/elfvsb.exp index 0b87c77..3208f8e 100644 --- a/ld/testsuite/ld-elfvsb/elfvsb.exp +++ b/ld/testsuite/ld-elfvsb/elfvsb.exp @@ -117,12 +117,12 @@ proc visibility_test { visibility progname testname main sh1 sh2 dat args } { } if {![ld_simple_link $CC $tmpdir/$progname.so "$shared $shldflags $tmpdir/$sh1 $tmpdir/$sh2"]} { if { [ string match $visibility "hidden_undef" ] - && [regexp ".*/sh1.c.*: undefined reference to \`\.?visibility\'" $link_output] - && [regexp ".*/sh1.c.*: undefined reference to \`visibility_var\'" $link_output] } { + && [regexp "undefined reference to \`\.?visibility\'" $link_output] + && [regexp "undefined reference to \`visibility_var\'" $link_output] } { pass "$testname" } else { if { [ string match $visibility "protected_undef" ] - && [regexp ".*/sh1.c.*: undefined reference to \`\.?visibility\'" $link_output] - && [regexp ".*/sh1.c.*: undefined reference to \`visibility_var\'" $link_output] } { + && [regexp "undefined reference to \`\.?visibility\'" $link_output] + && [regexp "undefined reference to \`visibility_var\'" $link_output] } { pass "$testname" } else { fail "$testname" @@ -140,14 +140,14 @@ proc visibility_test { visibility progname testname main sh1 sh2 dat args } { } if ![ld_simple_link $CC $tmpdir/$progname "-Wl,-rpath,$rpath $tmpdir/$main $tmpdir/$progname.so"] { if { [ string match $visibility "hidden" ] - && [regexp ".*/main.c.*: undefined reference to \`\.?visibility\'" $link_output] - && [regexp ".*/main.c.*: undefined reference to \`visibility_var\'" $link_output] } { + && [regexp "undefined reference to \`\.?visibility\'" $link_output] + && [regexp "undefined reference to \`visibility_var\'" $link_output] } { pass "$testname" } else { if { [ string match $visibility "hidden_undef_def" ] - && [regexp ".*/main.c.*: undefined reference to \`\.?visibility\'" $link_output] - && [regexp ".*/main.c.*: undefined reference to \`visibility_def\'" $link_output] - && [regexp ".*/main.c.*: undefined reference to \`\.?visibility_func\'" $link_output] - && [regexp ".*/main.c.*: undefined reference to \`visibility_var\'" $link_output] } { + && [regexp "undefined reference to \`\.?visibility\'" $link_output] + && [regexp "undefined reference to \`visibility_def\'" $link_output] + && [regexp "undefined reference to \`\.?visibility_func\'" $link_output] + && [regexp "undefined reference to \`visibility_var\'" $link_output] } { pass "$testname" } else { fail "$testname" |