diff options
author | Jeffrey Wheat <cassidy@cygnus> | 1993-08-12 23:19:09 +0000 |
---|---|---|
committer | Jeffrey Wheat <cassidy@cygnus> | 1993-08-12 23:19:09 +0000 |
commit | 26f709de0fdfd4d32acae00ef1596f17ba310df7 (patch) | |
tree | ddb84fbdb5ad452d0fcb3d80096b41e84c6c78e9 /ld/testsuite/config | |
parent | 9e191927ab8523aa4a15fccf0bf741ef6e7ef447 (diff) | |
download | gdb-26f709de0fdfd4d32acae00ef1596f17ba310df7.zip gdb-26f709de0fdfd4d32acae00ef1596f17ba310df7.tar.gz gdb-26f709de0fdfd4d32acae00ef1596f17ba310df7.tar.bz2 |
cleaned up tests to work like they did originally in the makefile
Diffstat (limited to 'ld/testsuite/config')
-rw-r--r-- | ld/testsuite/config/unix-ld.exp | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/ld/testsuite/config/unix-ld.exp b/ld/testsuite/config/unix-ld.exp index 9776938..3720d1a 100644 --- a/ld/testsuite/config/unix-ld.exp +++ b/ld/testsuite/config/unix-ld.exp @@ -71,5 +71,38 @@ proc ld_exit {} { # relink the linker # proc ld_start { ld target } { - default_ld_start $ld $target + # } + +# +# ld_relocate +# link an object using relocation +# +proc ld_relocate { ld target objects } { + default_ld_relocate $ld $target $objects +} + +# +# ld_link +# link a program using ld +# +proc ld_link { ld target objects } { + default_ld_link $ld $target $objects +} + +# +# ld_compile +# compile an object using $cc +# +proc ld_compile { cc source object } { + default_ld_compile $cc $source $object +} + +# +# ld_exec +# execute ithe target +# +proc ld_exec { target output } { + default_ld_exec $target $output +} + |