mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
* ld-scripts/script.exp: Split script verification into a proc.
Add simple test of MRI script. * ld-scripts/scriptm.t: New file.
This commit is contained in:
@ -1,5 +1,19 @@
|
|||||||
|
Tue Aug 15 17:35:35 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* ld-scripts/script.exp: Split script verification into a proc.
|
||||||
|
Add simple test of MRI script.
|
||||||
|
* ld-scripts/scriptm.t: New file.
|
||||||
|
|
||||||
|
Wed Jul 26 11:38:58 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* ld-sh/sh.exp: Mark `SH confirm relaxing' test unresolved when
|
||||||
|
appropriate.
|
||||||
|
|
||||||
Mon Jul 24 15:34:31 1995 Ian Lance Taylor <ian@cygnus.com>
|
Mon Jul 24 15:34:31 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* config/default.exp: Define objcopy if it is not defined.
|
||||||
|
* ld-sh/*: New tests for SH relaxing.
|
||||||
|
|
||||||
* ld-empic/empic.exp: If $CC does not exist, call untested rather
|
* ld-empic/empic.exp: If $CC does not exist, call untested rather
|
||||||
than unresolved.
|
than unresolved.
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ defined.t
|
|||||||
script.exp
|
script.exp
|
||||||
script.s
|
script.s
|
||||||
script.t
|
script.t
|
||||||
|
scriptm.t
|
||||||
sizeof.exp
|
sizeof.exp
|
||||||
sizeof.s
|
sizeof.s
|
||||||
sizeof.t
|
sizeof.t
|
||||||
|
10
ld/testsuite/ld-scripts/scriptm.t
Normal file
10
ld/testsuite/ld-scripts/scriptm.t
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
* MRI script
|
||||||
|
sect .text = $100 ; .text start address
|
||||||
|
sect .data = 1000h ; .data start address
|
||||||
|
public text_start = $100
|
||||||
|
public text_end = # continuation line
|
||||||
|
text_start + 4
|
||||||
|
public data_start = 1000h
|
||||||
|
public data_end = data_start + 4
|
||||||
|
|
||||||
|
load tmpdir/script.o
|
Reference in New Issue
Block a user