ld: Update expected test results for 32-bit hosts.

Tests that I added in commit c05b575a8d
fails on 32-bit hosts due to differences in whitespace.

This patch updates the expected output patterns to be more accepting of
differences in whitespace, the tests should now pass.

ld/testsuite/ChangeLog:

	* ld-scripts/provide-4-map.d: Update expected output.
	* ld-scripts/provide-5-map.d: Likewise.
This commit is contained in:
Andrew Burgess 2015-01-20 16:00:41 +00:00
parent 810c102655
commit 481765cde0
3 changed files with 15 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2015-01-20 Andrew Burgess <andrew.burgess@embecosm.com>
* ld-scripts/provide-4-map.d: Update expected output.
* ld-scripts/provide-5-map.d: Likewise.
2015-01-20 Andrew Burgess <andrew.burgess@embecosm.com>
* ld-scripts/provide-4.d: New file.

View File

@ -1,13 +1,13 @@
#...
Linker script and memory map
#...
\[!provide\] PROVIDE \(foo, 0x1\)
\[!provide\] PROVIDE \(bar, 0x2\)
0x0+3 PROVIDE \(baz, 0x3\)
\[!provide\] +PROVIDE \(foo, 0x1\)
\[!provide\] +PROVIDE \(bar, 0x2\)
0x0+3 +PROVIDE \(baz, 0x3\)
#...
0x0+2000 foo
\[!provide\] PROVIDE \(loc1, ALIGN \(\., 0x10\)\)
0x0+2010 PROVIDE \(loc2, ALIGN \(\., 0x10\)\)
\[!provide\] PROVIDE \(loc3, \(loc1 \+ 0x20\)\)
0x0+2030 loc4 = \(loc2 \+ 0x20\)
0x0+2000 +foo
\[!provide\] +PROVIDE \(loc1, ALIGN \(\., 0x10\)\)
0x0+2010 +PROVIDE \(loc2, ALIGN \(\., 0x10\)\)
\[!provide\] +PROVIDE \(loc3, \(loc1 \+ 0x20\)\)
0x0+2030 +loc4 = \(loc2 \+ 0x20\)
#...

View File

@ -1,6 +1,6 @@
#...
Linker script and memory map
#...
0x0+10 foo = 0x10
\[!provide\] PROVIDE \(foo, bar\)
0x0+10 +foo = 0x10
\[!provide\] +PROVIDE \(foo, bar\)
#...