2005-05-05 Paul Brook <paul@codesourcery.com>

gas/testsuite/
	* lib/gas-defs.exp (regexp_diff): Pass test if last line is "#...".
ld/testsuite/
	* lib/ld-lib.exp (regexp_diff): Pass test if last line is "#...".
	* ld-elfweak/elfweak.exp: Run size2.d.
	* ld-elfwaek/size2.d: New file.
	* ld-elfwaek/size2a.s: New file.
	* ld-elfwaek/size2b.s: New file.
This commit is contained in:
Paul Brook 2005-05-05 03:11:24 +00:00
parent ae380b4573
commit 5cfd5a0c98
8 changed files with 38 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-05-05 Paul Brook <paul@codesourcery.com>
* lib/gas-defs.exp (regexp_diff): Pass test if last line is "#...".
2005-04-26 H.J. Lu <hongjiu.lu@intel.com>
* gas/all/assign.s: Make `x' and `y' global.

View File

@ -663,6 +663,7 @@ proc regexp_diff { file_1 file_2 } {
} elseif [ string match "#..." $line_b ] {
if { [gets $file_b line_b] == $eof } {
set end_2 1
set diff_pass 1
break
}
verbose "looking for \"^$line_b$\"" 3

View File

@ -1,3 +1,11 @@
2005-05-05 Paul Brook <paul@codesourcery.com>
* lib/ld-lib.exp (regexp_diff): Pass test if last line is "#...".
* ld-elfweak/elfweak.exp: Run size2.d.
* ld-elfwaek/size2.d: New file.
* ld-elfwaek/size2a.s: New file.
* ld-elfwaek/size2b.s: New file.
2005-04-26 Mark Kettenis <kettenis@gnu.org>
* ld-fastcall/fastcall.exp: Don't run on i*86-*-openbsd*.

View File

@ -493,3 +493,6 @@ if ![ld_compile "$CC $CFLAGS" $srcdir/$subdir/size_main.c $tmpdir/size_main.o] {
}
build_exec "ELF weak size" size_main "size_main.o libsize_foo.so libsize_bar.so" "-Wl,-rpath,." size "" ""
verbose "size2"
run_dump_test $srcdir/$subdir/size2

View File

@ -0,0 +1,8 @@
#source: size2a.s
#source: size2b.s
#ld:
#readelf: -s
Symbol table '.symtab' contains .* entries:
#...
.*: [0-9a-f]* *1 *FUNC *GLOBAL *DEFAULT *[0-9] *_start
#...

View File

@ -0,0 +1,6 @@
.text
.global _start
.type _start, "function"
_start:
.byte 0
.size _start, 1

View File

@ -0,0 +1,7 @@
.text
.weak _start
.type _start, "function"
_start:
.byte 0
.byte 0
.size _start, 2

View File

@ -1029,6 +1029,7 @@ proc regexp_diff { file_1 file_2 } {
} elseif [ string match "#..." $line_b ] {
if { [gets $file_b line_b] == $eof } {
set end_2 1
set diff_pass 1
break
}
verbose "looking for \"^$line_b$\"" 3