diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-08-15 21:37:19 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-08-15 21:37:19 +0000 |
commit | 62a72a565de4ee65dd1a7121be53e672d4a33d53 (patch) | |
tree | 1c0b30630f83928cdd79d6eed547ce643504254e /ld/testsuite | |
parent | 3a473096422919ee478a7ccfaea3887fc11936db (diff) | |
download | gdb-62a72a565de4ee65dd1a7121be53e672d4a33d53.zip gdb-62a72a565de4ee65dd1a7121be53e672d4a33d53.tar.gz gdb-62a72a565de4ee65dd1a7121be53e672d4a33d53.tar.bz2 |
* ld-scripts/script.exp: Split script verification into a proc.
Add simple test of MRI script.
* ld-scripts/scriptm.t: New file.
Diffstat (limited to 'ld/testsuite')
-rw-r--r-- | ld/testsuite/ChangeLog | 14 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/.Sanitize | 1 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/scriptm.t | 10 |
3 files changed, 25 insertions, 0 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 76835ff..5afd6f8 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -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> + * 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 than unresolved. diff --git a/ld/testsuite/ld-scripts/.Sanitize b/ld/testsuite/ld-scripts/.Sanitize index 07c5fe0..9752482 100644 --- a/ld/testsuite/ld-scripts/.Sanitize +++ b/ld/testsuite/ld-scripts/.Sanitize @@ -29,6 +29,7 @@ defined.t script.exp script.s script.t +scriptm.t sizeof.exp sizeof.s sizeof.t diff --git a/ld/testsuite/ld-scripts/scriptm.t b/ld/testsuite/ld-scripts/scriptm.t new file mode 100644 index 0000000..57ccae1 --- /dev/null +++ b/ld/testsuite/ld-scripts/scriptm.t @@ -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 |