mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
88bd153960
When creating object files during testing, base the name of the object file on the name of the source file, rather than using dump0.o, dump1.o, etc. There's a few places where we have multiple source files with the same name but in different directories, in these cases, even after this change, we still add a numerical suffix to make the object file names unique. So if we have 'foo/src.s' and 'bar/src.s', we will create object files 'src.o' and 'src1.o'. Update the few tests that hard code the object file name into the expected test results. ld/ChangeLog: * testsuite/lib/ld-lib.exp (run_dump_test): Use object file names based on the original source file name. * testsuite/ld-discard/extern.d: Update object file names. * testsuite/ld-discard/start.d: Likewise. * testsuite/ld-discard/static.d: Likewise. * testsuite/ld-elf/orphan-8.map: Likewise.
14 lines
635 B
Makefile
14 lines
635 B
Makefile
#source: extern.s
|
|
#ld: -T discard.ld
|
|
#error: .*data.* referenced in section `\.text' of tmpdir/extern.o: defined in discarded section `\.data\.exit' of tmpdir/extern.o
|
|
#objdump: -p
|
|
#xfail: d30v-*-* dlx-*-* i960-*-* pj*-*-*
|
|
#xfail: m68hc12-*-* m6812-*-*
|
|
#pass
|
|
# The expected warning used to start with "`data' referenced..." but
|
|
# this has two problems: 1) It does not include the name of the linker
|
|
# command which will be present in the message, eg "../ld-new"
|
|
# 2) Targets which define EXTERN_FORCE_RELOC to 0 in their
|
|
# gas/config/tc-xxx.h file will convert the symbol in the reloc from
|
|
# "data" to the section symbol ".data.exit".
|