diff options
author | Nick Clifton <nickc@redhat.com> | 2020-07-08 11:08:05 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-07-08 11:08:05 +0100 |
commit | a7f987e8378830b181ce27359ca8bf115018db07 (patch) | |
tree | 4354d6692a759028b38e3305ad895690ddd12756 /gold | |
parent | 467bbef07fce64b902812e4a650093ef1b5e1235 (diff) | |
download | fsf-binutils-gdb-a7f987e8378830b181ce27359ca8bf115018db07.zip fsf-binutils-gdb-a7f987e8378830b181ce27359ca8bf115018db07.tar.gz fsf-binutils-gdb-a7f987e8378830b181ce27359ca8bf115018db07.tar.bz2 |
Commit: Fix GOLD testsuite failures for 2.35 branch.
* testsuite/script_test_7.sh: Adjust expected address of the .bss
section.
* testsuite/script_test_9.sh: Do not expect the .init section to
immediately follow the .text section in the mapping of sections to
segments.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 8 | ||||
-rwxr-xr-x | gold/testsuite/script_test_7.sh | 2 | ||||
-rwxr-xr-x | gold/testsuite/script_test_9.sh | 3 |
3 files changed, 11 insertions, 2 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index a81fe42..f7520ba 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,11 @@ +2020-07-08 Nick Clifton <nickc@redhat.com> + + * testsuite/script_test_7.sh: Adjust expected address of the .bss + section. + * testsuite/script_test_9.sh: Do not expect the .init section to + immediately follow the .text section in the mapping of sections to + segments. + 2020-07-07 Nick Clifton <nickc@redhat.com> * target-reloc.h: (Default_comdat_behaviour:get): Ignore discarded diff --git a/gold/testsuite/script_test_7.sh b/gold/testsuite/script_test_7.sh index adddf6c..091875e 100755 --- a/gold/testsuite/script_test_7.sh +++ b/gold/testsuite/script_test_7.sh @@ -40,4 +40,4 @@ check() check script_test_7.stdout "\\.interp[ ]*PROGBITS[ ]*0*10000100" check script_test_7.stdout "\\.data[ ]*PROGBITS[ ]*0*10200000" -check script_test_7.stdout "\\.bss[ ]*NOBITS[ ]*0*10400..." +check script_test_7.stdout "\\.bss[ ]*NOBITS[ ]*0*1040...." diff --git a/gold/testsuite/script_test_9.sh b/gold/testsuite/script_test_9.sh index 3dcd3c4..da75b65 100755 --- a/gold/testsuite/script_test_9.sh +++ b/gold/testsuite/script_test_9.sh @@ -38,5 +38,6 @@ check() check script_test_9.stdout "LOAD .*R E " check script_test_9.stdout "LOAD .*RW " -check script_test_9.stdout "00 .*\.text .init" +check script_test_9.stdout "00 .*\.text" +check script_test_9.stdout "00 .*\.init" check script_test_9.stdout "01 .*\.data " |