mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
* lib/gas-defs.exp (regexp_diff): Allow '#...' to mean "some
indeterminate number of extra lines here". * gas/elf/elf.exp: Remove XFAILs. * gas/elf/section0.d: Make pass on MIPS (and hopefully alpha). * gas/elf/section1.d: Likewise.
This commit is contained in:
@ -1,3 +1,12 @@
|
|||||||
|
Mon Oct 11 13:37:51 1999 Geoffrey Keating <geoffk@cygnus.com>
|
||||||
|
|
||||||
|
* lib/gas-defs.exp (regexp_diff): Allow '#...' to mean "some
|
||||||
|
indeterminate number of extra lines here".
|
||||||
|
|
||||||
|
* gas/elf/elf.exp: Remove XFAILs.
|
||||||
|
* gas/elf/section0.d: Make pass on MIPS (and hopefully alpha).
|
||||||
|
* gas/elf/section1.d: Likewise.
|
||||||
|
|
||||||
Thu Oct 7 00:12:04 MDT 1999 Diego Novillo <dnovillo@cygnus.com>
|
Thu Oct 7 00:12:04 MDT 1999 Diego Novillo <dnovillo@cygnus.com>
|
||||||
|
|
||||||
* gas/d10v: New directory.
|
* gas/d10v: New directory.
|
||||||
|
@ -10,14 +10,6 @@ if { ([istarget "*-*-elf*"]
|
|||||||
&& ![istarget *-*-linux*aout*]
|
&& ![istarget *-*-linux*aout*]
|
||||||
&& ![istarget *-*-linux*oldld*]
|
&& ![istarget *-*-linux*oldld*]
|
||||||
} then {
|
} then {
|
||||||
|
|
||||||
# FIXME: This doesn't work for MIPS and alpha targets because of
|
|
||||||
# the .reginfo and .mdebug sections.
|
|
||||||
setup_xfail mips*-*-*
|
|
||||||
setup_xfail alpha*-*-*
|
|
||||||
run_dump_test "section0"
|
run_dump_test "section0"
|
||||||
|
|
||||||
setup_xfail mips*-*-*
|
|
||||||
setup_xfail alpha*-*-*
|
|
||||||
run_dump_test "section1"
|
run_dump_test "section1"
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
Contents of section .text:
|
Contents of section .text:
|
||||||
Contents of section .data:
|
Contents of section .data:
|
||||||
0000 0000 ..
|
0000 0000 ..
|
||||||
|
# The MIPS includes a 'section .reginfo' and such here.
|
||||||
|
#...
|
||||||
Contents of section A:
|
Contents of section A:
|
||||||
0000 010101 ...
|
0000 010101 ...
|
||||||
Contents of section B:
|
Contents of section B:
|
||||||
|
@ -6,6 +6,8 @@
|
|||||||
Contents of section .text:
|
Contents of section .text:
|
||||||
Contents of section .data:
|
Contents of section .data:
|
||||||
0000 000000 ...
|
0000 000000 ...
|
||||||
|
# The MIPS includes a 'section .reginfo' and such here.
|
||||||
|
#...
|
||||||
Contents of section A:
|
Contents of section A:
|
||||||
0000 01010101 0101 ......
|
0000 01010101 0101 ......
|
||||||
Contents of section B:
|
Contents of section B:
|
||||||
|
@ -495,6 +495,20 @@ proc regexp_diff { file_1 file_2 } {
|
|||||||
set end_2 1
|
set end_2 1
|
||||||
set diff_pass 1
|
set diff_pass 1
|
||||||
break
|
break
|
||||||
|
} elseif [ string match "#..." $line_b ] {
|
||||||
|
if { [gets $file_b line_b] == $eof } {
|
||||||
|
set end_2 1
|
||||||
|
break
|
||||||
|
}
|
||||||
|
verbose "looking for \"^$line_b$\"" 3
|
||||||
|
while { ![regexp "^$line_b$" "$line_a"] } {
|
||||||
|
verbose "skipping \"$line_a\"" 3
|
||||||
|
if { [gets $file_a line_a] == $eof } {
|
||||||
|
set end_1 1
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
if { [gets $file_b line_b] == $eof } {
|
if { [gets $file_b line_b] == $eof } {
|
||||||
set end_2 1
|
set end_2 1
|
||||||
|
Reference in New Issue
Block a user