OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [binutils-2.18.50/] [ld/] [testsuite/] [ld-srec/] [srec.exp] - Diff between revs 38 and 156

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 38 Rev 156
# Test linking directly to S-records.
# Test linking directly to S-records.
# By Ian Lance Taylor, Cygnus Support.
# By Ian Lance Taylor, Cygnus Support.
#   Copyright 1999, 2000, 2001, 2002, 2003, 2006, 2007
#   Copyright 1999, 2000, 2001, 2002, 2003, 2006, 2007
#   Free Software Foundation, Inc.
#   Free Software Foundation, Inc.
#
#
# This file is part of the GNU Binutils.
# This file is part of the GNU Binutils.
#
#
# 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, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
# MA 02110-1301, USA.
# MA 02110-1301, USA.
# Get the offset from an S-record line to the start of the data.
# Get the offset from an S-record line to the start of the data.
proc srec_off { l } {
proc srec_off { l } {
    if [string match "S1*" $l] {
    if [string match "S1*" $l] {
        return 8
        return 8
    } else { if [string match "S2*" $l] {
    } else { if [string match "S2*" $l] {
        return 10
        return 10
    } else { if [string match "S3*" $l] {
    } else { if [string match "S3*" $l] {
        return 12
        return 12
    } else {
    } else {
        return -1
        return -1
    } } }
    } } }
}
}
# See if an S-record line contains only zero data.
# See if an S-record line contains only zero data.
proc srec_zero { l } {
proc srec_zero { l } {
    if [string match "S\[0789\]*" $l] {
    if [string match "S\[0789\]*" $l] {
        return 1
        return 1
    }
    }
    # Strip the address and checksum.
    # Strip the address and checksum.
    if [string match "S\[123\]*" $l] {
    if [string match "S\[123\]*" $l] {
        set l [string range $l [srec_off $l] [expr [string length $l] - 3]]
        set l [string range $l [srec_off $l] [expr [string length $l] - 3]]
    } else {
    } else {
        return 0
        return 0
    }
    }
    # The rest must be zero.
    # The rest must be zero.
    return [string match "" [string trim $l "0"]]
    return [string match "" [string trim $l "0"]]
}
}
# Get the address of an S-record line.
# Get the address of an S-record line.
proc srec_addr { l } {
proc srec_addr { l } {
    if [string match "S\[123\]*" $l] {
    if [string match "S\[123\]*" $l] {
        set addr [string range $l 4 [expr [srec_off $l] - 1]]
        set addr [string range $l 4 [expr [srec_off $l] - 1]]
    } else {
    } else {
        return -1
        return -1
    }
    }
    return "0x$addr"
    return "0x$addr"
}
}
# Get the number of data bytes in an S-record line.
# Get the number of data bytes in an S-record line.
proc srec_len { l } {
proc srec_len { l } {
    if ![string match "S\[123\]*" $l] {
    if ![string match "S\[123\]*" $l] {
        return 0
        return 0
    }
    }
    return [expr "0x[string range $l 2 3]" - ([srec_off $l] - 4) / 2 - 1]
    return [expr "0x[string range $l 2 3]" - ([srec_off $l] - 4) / 2 - 1]
}
}
# Extract bytes from an S-record line.
# Extract bytes from an S-record line.
proc srec_extract { l start len } {
proc srec_extract { l start len } {
    set off [srec_off $l]
    set off [srec_off $l]
    set rlen [srec_len $l]
    set rlen [srec_len $l]
    set stop [expr $start + $len]
    set stop [expr $start + $len]
    if { $stop > $rlen } {
    if { $stop > $rlen } {
        set stop [expr $rlen]
        set stop [expr $rlen]
    }
    }
    set start [expr $start * 2 + $off]
    set start [expr $start * 2 + $off]
    set stop [expr $stop * 2 + $off - 1]
    set stop [expr $stop * 2 + $off - 1]
    return [string range $l $start $stop]
    return [string range $l $start $stop]
}
}
# See if a range of bytes in an S-record line is all zeroes.
# See if a range of bytes in an S-record line is all zeroes.
proc srec_zero_range { l start len } {
proc srec_zero_range { l start len } {
    return [string match "" [string trim [srec_extract $l $start $len] "0"]]
    return [string match "" [string trim [srec_extract $l $start $len] "0"]]
}
}
# Trim an S-record line such that the specified number of bytes remain
# Trim an S-record line such that the specified number of bytes remain
# at the end.
# at the end.
proc srec_trim { l leave } {
proc srec_trim { l leave } {
    set off [srec_off $l]
    set off [srec_off $l]
    set addr [srec_addr $l]
    set addr [srec_addr $l]
    set len [srec_len $l]
    set len [srec_len $l]
    if { $leave >= $len } {
    if { $leave >= $len } {
        return $l
        return $l
    }
    }
    set s1 [string range $l 0 1]
    set s1 [string range $l 0 1]
    set s2 [format "%02x" [expr ($off - 4) / 2 + $leave + 1]]
    set s2 [format "%02x" [expr ($off - 4) / 2 + $leave + 1]]
    set s3 [format "%0[expr $off - 4]x" [expr $addr + $len - $leave]]
    set s3 [format "%0[expr $off - 4]x" [expr $addr + $len - $leave]]
    set s4 [string range $l [expr [string length $l] - ($leave * 2) - 2] end]
    set s4 [string range $l [expr [string length $l] - ($leave * 2) - 2] end]
    set s "${s1}${s2}${s3}${s4}"
    set s "${s1}${s2}${s3}${s4}"
    verbose "srec_trim { '$l' $leave } returning '$s'" 2
    verbose "srec_trim { '$l' $leave } returning '$s'" 2
    return $s
    return $s
}
}
# Report failure when comparing S-record lines
# Report failure when comparing S-record lines
proc srec_compare_fail { which l1 l2 } {
proc srec_compare_fail { which l1 l2 } {
    send_log "comparison failure $which:\n$l1\n$l2\n"
    send_log "comparison failure $which:\n$l1\n$l2\n"
    verbose "comparison failure $which:\n$l1\n$l2"
    verbose "comparison failure $which:\n$l1\n$l2"
}
}
# Compare S-record files.  We don't want to fuss about things like
# Compare S-record files.  We don't want to fuss about things like
# extra zeroes.  Note that BFD always sorts S-records by address.
# extra zeroes.  Note that BFD always sorts S-records by address.
proc srec_compare { f1 f2 } {
proc srec_compare { f1 f2 } {
    set e1 [gets $f1 l1]
    set e1 [gets $f1 l1]
    set e2 [gets $f2 l2]
    set e2 [gets $f2 l2]
    while { $e1 != -1 } {
    while { $e1 != -1 } {
        set l1 [string trimright $l1 "\r\n"]
        set l1 [string trimright $l1 "\r\n"]
        set l2 [string trimright $l2 "\r\n"]
        set l2 [string trimright $l2 "\r\n"]
        if { $e2 == -1 } {
        if { $e2 == -1 } {
            # If l1 contains data, it must be zero.
            # If l1 contains data, it must be zero.
            if ![srec_zero $l1] {
            if ![srec_zero $l1] {
                send_log "data after EOF: $l1\n"
                send_log "data after EOF: $l1\n"
                verbose "data after EOF: $l1"
                verbose "data after EOF: $l1"
                return 0
                return 0
            }
            }
        } else { if { [string compare $l1 $l2] == 0 } {
        } else { if { [string compare $l1 $l2] == 0 } {
            set e1 [gets $f1 l1]
            set e1 [gets $f1 l1]
            set e2 [gets $f2 l2]
            set e2 [gets $f2 l2]
        } else { if { [srec_zero $l1] } {
        } else { if { [srec_zero $l1] } {
            set e1 [gets $f1 l1]
            set e1 [gets $f1 l1]
        } else { if { [srec_zero $l2] } {
        } else { if { [srec_zero $l2] } {
            set e2 [gets $f2 l2]
            set e2 [gets $f2 l2]
        } else {
        } else {
            # The strings are not the same, and neither is all zeroes.
            # The strings are not the same, and neither is all zeroes.
            set a1 [srec_addr $l1]
            set a1 [srec_addr $l1]
            set n1 [srec_len $l1]
            set n1 [srec_len $l1]
            set a2 [srec_addr $l2]
            set a2 [srec_addr $l2]
            set n2 [srec_len $l2]
            set n2 [srec_len $l2]
            if { $a1 < $a2 && ![srec_zero_range $l1 0 [expr $a2 - $a1]] } {
            if { $a1 < $a2 && ![srec_zero_range $l1 0 [expr $a2 - $a1]] } {
                verbose "$a1 $a2 [srec_extract $l1 0 [expr $a2 - $a1]]" 2
                verbose "$a1 $a2 [srec_extract $l1 0 [expr $a2 - $a1]]" 2
                srec_compare_fail 1 $l1 $l2
                srec_compare_fail 1 $l1 $l2
                return 0
                return 0
            }
            }
            if { $a2 < $a1 && ![srec_zero_range $l2 0 [expr $a1 - $a2]] } {
            if { $a2 < $a1 && ![srec_zero_range $l2 0 [expr $a1 - $a2]] } {
                srec_compare_fail 2 $l1 $l2
                srec_compare_fail 2 $l1 $l2
                return 0
                return 0
            }
            }
            # Here we know that any initial data in both lines is
            # Here we know that any initial data in both lines is
            # zero.  Now make sure that any overlapping data matches.
            # zero.  Now make sure that any overlapping data matches.
            if { $a1 < $a2 } {
            if { $a1 < $a2 } {
                set os1 [expr $a2 - $a1]
                set os1 [expr $a2 - $a1]
                set os2 0
                set os2 0
            } else {
            } else {
                set os1 0
                set os1 0
                set os2 [expr $a1 - $a2]
                set os2 [expr $a1 - $a2]
            }
            }
            if { $a1 + $n1 < $a2 + $n2 } {
            if { $a1 + $n1 < $a2 + $n2 } {
                set ol [expr $n1 - $os1]
                set ol [expr $n1 - $os1]
            } else {
            } else {
                set ol [expr $n2 - $os2]
                set ol [expr $n2 - $os2]
            }
            }
            set x1 [srec_extract $l1 $os1 $ol]
            set x1 [srec_extract $l1 $os1 $ol]
            set x2 [srec_extract $l2 $os2 $ol]
            set x2 [srec_extract $l2 $os2 $ol]
            if { [string compare $x1 $x2] != 0 } {
            if { [string compare $x1 $x2] != 0 } {
                verbose "$os1 $ol $x1" 2
                verbose "$os1 $ol $x1" 2
                verbose "$os2 $ol $x2" 2
                verbose "$os2 $ol $x2" 2
                srec_compare_fail 3 $l1 $l2
                srec_compare_fail 3 $l1 $l2
                return 0
                return 0
            }
            }
            # These strings match.  Trim the data from the larger
            # These strings match.  Trim the data from the larger
            # string, read a new copy of the smaller string, and
            # string, read a new copy of the smaller string, and
            # continue.
            # continue.
            if { $a1 + $n1 < $a2 + $n2 } {
            if { $a1 + $n1 < $a2 + $n2 } {
                set l2 [srec_trim $l2 [expr ($a2 + $n2) - ($a1 + $n1)]]
                set l2 [srec_trim $l2 [expr ($a2 + $n2) - ($a1 + $n1)]]
                set e1 [gets $f1 l1]
                set e1 [gets $f1 l1]
            } else { if { $a1 + $n1 > $a2 + $n2 } {
            } else { if { $a1 + $n1 > $a2 + $n2 } {
                set l1 [srec_trim $l1 [expr ($a1 + $n1) - ($a2 + $n2)]]
                set l1 [srec_trim $l1 [expr ($a1 + $n1) - ($a2 + $n2)]]
                set e2 [gets $f2 l2]
                set e2 [gets $f2 l2]
            } else {
            } else {
                set e1 [gets $f1 l1]
                set e1 [gets $f1 l1]
                set e2 [gets $f2 l2]
                set e2 [gets $f2 l2]
            } }
            } }
        } } } }
        } } } }
    }
    }
    # We've reached the end of the first file.  The remainder of the
    # We've reached the end of the first file.  The remainder of the
    # second file must contain only zeroes.
    # second file must contain only zeroes.
    while { $e2 != -1 } {
    while { $e2 != -1 } {
        set l2 [string trimright $l2 "\r\n"]
        set l2 [string trimright $l2 "\r\n"]
        if ![srec_zero $l2] {
        if ![srec_zero $l2] {
            send_log "data after EOF: $l2\n"
            send_log "data after EOF: $l2\n"
            verbose "data after EOF: $l2"
            verbose "data after EOF: $l2"
            return 0
            return 0
        }
        }
        set e2 [gets $f2 l2]
        set e2 [gets $f2 l2]
    }
    }
    return 1
    return 1
}
}
# Link twice, objcopy, and compare
# Link twice, objcopy, and compare
proc run_srec_test { test objs } {
proc run_srec_test { test objs } {
    global ld
    global ld
    global objcopy
    global objcopy
    global sizeof_headers
    global sizeof_headers
    global host_triplet
    global host_triplet
    # Tell the ELF linker to not do anything clever with .eh_frame,
    # Tell the ELF linker to not do anything clever with .eh_frame,
    # not to put anything in small data, and define a symbol referenced
    # not to put anything in small data, and define a symbol referenced
    # by gcc -fstack-protector code.
    # by gcc -fstack-protector code.
    set flags "--traditional-format -G 0 --defsym __stack_chk_fail=0"
    set flags "--traditional-format -G 0 --defsym __stack_chk_fail=0"
    # If the linker script uses SIZEOF_HEADERS, use a -Ttext argument
    # If the linker script uses SIZEOF_HEADERS, use a -Ttext argument
    # to force both the normal link and the S-record link to be put in
    # to force both the normal link and the S-record link to be put in
    # the same place.  We don't always use -Ttext because it interacts
    # the same place.  We don't always use -Ttext because it interacts
    # poorly with a.out.
    # poorly with a.out.
    if { $sizeof_headers } {
    if { $sizeof_headers } {
        set flags "$flags -Ttext 0x1000"
        set flags "$flags -Ttext 0x1000"
    }
    }
    if [istarget sh64*-*-elf] {
    if [istarget sh64*-*-elf] {
        # This is what gcc passes to ld by default.
        # This is what gcc passes to ld by default.
        set flags "-mshelf32"
        set flags "-mshelf32"
        # SH64 targets cannot convert format in the linker
        # SH64 targets cannot convert format in the linker
        # using the -oformat command line switch.
        # using the -oformat command line switch.
        setup_xfail "sh64*-*-*"
        setup_xfail "sh64*-*-*"
    }
    }
    if {[istarget arm*-*-*]       || \
    if {[istarget arm*-*-*]       || \
        [istarget strongarm*-*-*] || \
        [istarget strongarm*-*-*] || \
        [istarget xscale*-*-*]    || \
        [istarget xscale*-*-*]    || \
        [istarget thumb-*-*] } {
        [istarget thumb-*-*] } {
        # ARM targets call __gccmain
        # ARM targets call __gccmain
        set flags "$flags --defsym __gccmain=0"
        set flags "$flags --defsym __gccmain=0"
        # ARM targets cannot convert format in the linker
        # ARM targets cannot convert format in the linker
        # using the --oformat command line switch
        # using the --oformat command line switch
        setup_xfail "*arm*-*-*"
        setup_xfail "*arm*-*-*"
        setup_xfail "xscale-*-*"
        setup_xfail "xscale-*-*"
        setup_xfail "thumb-*-*"
        setup_xfail "thumb-*-*"
    }
    }
    # PowerPC EABI code calls __eabi.
    # PowerPC EABI code calls __eabi.
    if [istarget powerpc*-*-eabi*] {
    if [istarget powerpc*-*-eabi*] {
        set flags "$flags --defsym __eabi=0"
        set flags "$flags --defsym __eabi=0"
    }
    }
    # mn10200 code calls __truncsipsi2_d0_d2.
    # mn10200 code calls __truncsipsi2_d0_d2.
    if {[istarget mn10200*-*-*]} then {
    if {[istarget mn10200*-*-*]} then {
        set flags "$flags --defsym __truncsipsi2_d0_d2=0"
        set flags "$flags --defsym __truncsipsi2_d0_d2=0"
    }
    }
    # m6811/m6812 code has references to soft registers.
    # m6811/m6812 code has references to soft registers.
    if {[istarget m6811-*-*] || [istarget m6812-*-*]} {
    if {[istarget m6811-*-*] || [istarget m6812-*-*]} {
        set flags "$flags --defsym _.frame=0 --defsym _.d1=0 --defsym _.d2=0"
        set flags "$flags --defsym _.frame=0 --defsym _.d1=0 --defsym _.d2=0"
        set flags "$flags --defsym _.d3=0 --defsym _.d4=0"
        set flags "$flags --defsym _.d3=0 --defsym _.d4=0"
        set flags "$flags --defsym _.tmp=0 --defsym _.xy=0 --defsym _.z=0"
        set flags "$flags --defsym _.tmp=0 --defsym _.xy=0 --defsym _.z=0"
    }
    }
    # V850 targets need libgcc.a
    # V850 targets need libgcc.a
    if [istarget v850*-*-elf] {
    if [istarget v850*-*-elf] {
        set objs "$objs -L ../gcc -lgcc"
        set objs "$objs -L ../gcc -lgcc"
    }
    }
    # Xtensa ELF targets relax by default; S-Record linker does not
    # Xtensa ELF targets relax by default; S-Record linker does not
    if [istarget xtensa*-*-*] {
    if [istarget xtensa*-*-*] {
        set flags "$flags -no-relax"
        set flags "$flags -no-relax"
    }
    }
    # Some OpenBSD targets have ProPolice and reference __guard and
    # Some OpenBSD targets have ProPolice and reference __guard and
    # __stack_smash_handler.
    # __stack_smash_handler.
    if [istarget *-*-openbsd*] {
    if [istarget *-*-openbsd*] {
        set flags "$flags --defsym __guard=0"
        set flags "$flags --defsym __guard=0"
        set flags "$flags --defsym __stack_smash_handler=0"
        set flags "$flags --defsym __stack_smash_handler=0"
    }
    }
    if { ![ld_simple_link $ld tmpdir/sr1 "$flags $objs"] \
    if { ![ld_simple_link $ld tmpdir/sr1 "$flags $objs"] \
         || ![ld_simple_link $ld tmpdir/sr2.sr "$flags --oformat srec $objs"] } {
         || ![ld_simple_link $ld tmpdir/sr2.sr "$flags --oformat srec $objs"] } {
        fail $test
        fail $test
        return
        return
    }
    }
    send_log "$objcopy -O srec tmpdir/sr1 tmpdir/sr1.sr\n"
    send_log "$objcopy -O srec tmpdir/sr1 tmpdir/sr1.sr\n"
    set exec_output [run_host_cmd "$objcopy" "-O srec tmpdir/sr1 tmpdir/sr1.sr"]
    set exec_output [run_host_cmd "$objcopy" "-O srec tmpdir/sr1 tmpdir/sr1.sr"]
    set exec_output [prune_warnings $exec_output]
    set exec_output [prune_warnings $exec_output]
    if ![string match "" $exec_output] {
    if ![string match "" $exec_output] {
        send_log "$exec_output\n"
        send_log "$exec_output\n"
        verbose "$exec_output"
        verbose "$exec_output"
        unresolved $test
        unresolved $test
        return
        return
    }
    }
    set f1 [open tmpdir/sr1.sr r]
    set f1 [open tmpdir/sr1.sr r]
    set f2 [open tmpdir/sr2.sr r]
    set f2 [open tmpdir/sr2.sr r]
    if [srec_compare $f1 $f2] {
    if [srec_compare $f1 $f2] {
        pass $test
        pass $test
    } else {
    } else {
        fail $test
        fail $test
    }
    }
    close $f1
    close $f1
    close $f2
    close $f2
}
}
set test1 "S-records"
set test1 "S-records"
set test2 "S-records with constructors"
set test2 "S-records with constructors"
# See whether the default linker script uses SIZEOF_HEADERS.
# See whether the default linker script uses SIZEOF_HEADERS.
set exec_output [run_host_cmd "$ld" "--verbose"]
set exec_output [run_host_cmd "$ld" "--verbose"]
set sizeof_headers [string match "*SIZEOF_HEADERS*" $exec_output]
set sizeof_headers [string match "*SIZEOF_HEADERS*" $exec_output]
# First test linking a C program.  We don't require any libraries.  We
# First test linking a C program.  We don't require any libraries.  We
# link it normally, and objcopy to the S-record format, and then link
# link it normally, and objcopy to the S-record format, and then link
# directly to the S-record format, and require that the two files
# directly to the S-record format, and require that the two files
# contain the same data.
# contain the same data.
if { ![is_remote host] && [which $CC] == 0 } {
if { ![is_remote host] && [which $CC] == 0 } {
    untested $test1
    untested $test1
    untested $test2
    untested $test2
    return
    return
}
}
if { ![ld_compile $CC $srcdir/$subdir/sr1.c tmpdir/sr1.o] \
if { ![ld_compile $CC $srcdir/$subdir/sr1.c tmpdir/sr1.o] \
     || ![ld_compile $CC $srcdir/$subdir/sr2.c tmpdir/sr2.o] } {
     || ![ld_compile $CC $srcdir/$subdir/sr2.c tmpdir/sr2.o] } {
    unresolved $test1
    unresolved $test1
    unresolved $test2
    unresolved $test2
    return
    return
}
}
# The i386-aout target is confused: the linker does not put the
# The i386-aout target is confused: the linker does not put the
# sections where objdump finds them.  I don't know which is wrong.
# sections where objdump finds them.  I don't know which is wrong.
setup_xfail "i*86-*-aout*"
setup_xfail "i*86-*-aout*"
# These tests fail on the native MIPS ELF targets because the GP value
# These tests fail on the native MIPS ELF targets because the GP value
# in the .reginfo section is not updated when the S-record version is
# in the .reginfo section is not updated when the S-record version is
# written out.  The mips-elf target itself does not use a .reginfo section.
# written out.  The mips-elf target itself does not use a .reginfo section.
setup_xfail "mips*-*-irix5*" "mips*-*-irix6*" "mips*-*-linux*"
setup_xfail "mips*-*-irix5*" "mips*-*-irix6*" "mips*-*-linux*"
# The S-record linker doesn't do the magic TOC handling that XCOFF
# The S-record linker doesn't do the magic TOC handling that XCOFF
# linkers do.
# linkers do.
setup_xfail "*-*-aix*" "*-*-xcoff*"
setup_xfail "*-*-aix*" "*-*-xcoff*"
# The S-record linker doesn't build ARM/Thumb stubs.
# The S-record linker doesn't build ARM/Thumb stubs.
setup_xfail "arm-*-coff"
setup_xfail "arm-*-coff"
setup_xfail "strongarm*-*-coff"
setup_xfail "strongarm*-*-coff"
setup_xfail "xscale*-*-coff"
setup_xfail "xscale*-*-coff"
setup_xfail "arm-*-pe*"
setup_xfail "arm-*-pe*"
# setup_xfail "arm-*elf*"
# setup_xfail "arm-*elf*"
setup_xfail "thumb-*-coff*"
setup_xfail "thumb-*-coff*"
setup_xfail "thumb-*-pe*"
setup_xfail "thumb-*-pe*"
setup_xfail "thumb-*-elf*"
setup_xfail "thumb-*-elf*"
setup_xfail "arm*-*-linux*"
setup_xfail "arm*-*-linux*"
# The S-record linker doesn't include the .{zda} sections.
# The S-record linker doesn't include the .{zda} sections.
setup_xfail "v850*-*-elf"
setup_xfail "v850*-*-elf"
# The S-record linker doesn't handle Alpha Elf relaxation.
# The S-record linker doesn't handle Alpha Elf relaxation.
setup_xfail "alpha*-*-elf*" "alpha*-*-linux-*" "alpha*-*-gnu*"
setup_xfail "alpha*-*-elf*" "alpha*-*-linux-*" "alpha*-*-gnu*"
setup_xfail "alpha*-*-netbsd*"
setup_xfail "alpha*-*-netbsd*"
# The S-record linker hasn't any hope of coping with HPPA relocs.
# The S-record linker hasn't any hope of coping with HPPA relocs.
setup_xfail "hppa*-*-*"
setup_xfail "hppa*-*-*"
# The S-record linker doesn't handle IA64 Elf relaxation.
# The S-record linker doesn't handle IA64 Elf relaxation.
setup_xfail "ia64-*-*"
setup_xfail "ia64-*-*"
# The S-record linker doesn't support the special PE headers - the PE
# The S-record linker doesn't support the special PE headers - the PE
# emulation tries to write pe-specific information to the PE headers
# emulation tries to write pe-specific information to the PE headers
# in the output bfd, but it's not a PE bfd (it's an srec bfd)
# in the output bfd, but it's not a PE bfd (it's an srec bfd)
setup_xfail "*-*-cygwin*" "*-*-mingw*" "*-*-pe*" "*-*-winnt*"
setup_xfail "*-*-cygwin*" "*-*-mingw*" "*-*-pe*" "*-*-winnt*"
setup_xfail "score-*-*"
setup_xfail "score-*-*"
run_srec_test $test1 "tmpdir/sr1.o tmpdir/sr2.o"
run_srec_test $test1 "tmpdir/sr1.o tmpdir/sr2.o"
# Now try linking a C++ program with global constructors and
# Now try linking a C++ program with global constructors and
# destructors.  Note that since we are not linking against any
# destructors.  Note that since we are not linking against any
# libraries, this program won't actually work or anything.
# libraries, this program won't actually work or anything.
if { ![is_remote host] && [which $CXX] == 0 } {
if { ![is_remote host] && [which $CXX] == 0 } {
    untested $test2
    untested $test2
    return
    return
}
}
if ![ld_compile "$CXX $CXXFLAGS -fno-exceptions" $srcdir/$subdir/sr3.cc tmpdir/sr3.o] {
if ![ld_compile "$CXX $CXXFLAGS -fno-exceptions" $srcdir/$subdir/sr3.cc tmpdir/sr3.o] {
    unresolved $test2
    unresolved $test2
    return
    return
}
}
# See above.
# See above.
setup_xfail "i*86-*-aout*"
setup_xfail "i*86-*-aout*"
setup_xfail "mips*-*-irix5*" "mips*-*-irix6*" "mips*-*-linux*"
setup_xfail "mips*-*-irix5*" "mips*-*-irix6*" "mips*-*-linux*"
setup_xfail "*-*-aix*" "*-*-xcoff*"
setup_xfail "*-*-aix*" "*-*-xcoff*"
setup_xfail "arm*-*-*"
setup_xfail "arm*-*-*"
setup_xfail "strongarm*-*-*"
setup_xfail "strongarm*-*-*"
setup_xfail "thumb-*-*"
setup_xfail "thumb-*-*"
setup_xfail "v850*-*-elf"
setup_xfail "v850*-*-elf"
setup_xfail "alpha*-*-elf*" "alpha*-*-linux-*" "alpha*-*-gnu*"
setup_xfail "alpha*-*-elf*" "alpha*-*-linux-*" "alpha*-*-gnu*"
setup_xfail "alpha*-*-netbsd*"
setup_xfail "alpha*-*-netbsd*"
setup_xfail "hppa*-*-*"
setup_xfail "hppa*-*-*"
setup_xfail "ia64-*-*"
setup_xfail "ia64-*-*"
setup_xfail "*-*-cygwin*" "*-*-mingw*" "*-*-pe*" "*-*-winnt*"
setup_xfail "*-*-cygwin*" "*-*-mingw*" "*-*-pe*" "*-*-winnt*"
setup_xfail "score-*-*"
setup_xfail "score-*-*"
run_srec_test $test2 "tmpdir/sr3.o"
run_srec_test $test2 "tmpdir/sr3.o"
 
 

powered by: WebSVN 2.1.0

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