diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-10-30 23:14:33 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-10-30 23:14:33 +0000 |
commit | df61ffb2ac3dd24cd4d848f67abc8a6c18de9b06 (patch) | |
tree | 342d58ea55ed50d095c1aa712b180da7039fc812 /elf | |
parent | 09dec6c37e3cd967f62795320703647f24545e3e (diff) | |
download | glibc-df61ffb2ac3dd24cd4d848f67abc8a6c18de9b06.zip glibc-df61ffb2ac3dd24cd4d848f67abc8a6c18de9b06.tar.gz glibc-df61ffb2ac3dd24cd4d848f67abc8a6c18de9b06.tar.bz2 |
Support cross-testing for elf/tst-array*.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 40 |
1 files changed, 16 insertions, 24 deletions
diff --git a/elf/Makefile b/elf/Makefile index d583b94..42b792b 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -846,45 +846,37 @@ LDFLAGS-tst-execstack-needed = -Wl,-z,noexecstack LDFLAGS-tst-execstack-prog = -Wl,-z,execstack endif -$(objpfx)tst-array1.out: $(objpfx)tst-array1 - $(elf-objpfx)$(rtld-installed-name) \ - --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \ - $(objpfx)tst-array1 > $@ +$(objpfx)tst-array1.out: tst-array1.exp $(objpfx)tst-array1 + $(built-program-cmd) > $@ cmp $@ tst-array1.exp > /dev/null -$(objpfx)tst-array1-static.out: $(objpfx)tst-array1-static - $(objpfx)tst-array1-static > $@ +$(objpfx)tst-array1-static.out: tst-array1.exp $(objpfx)tst-array1-static + $(built-program-cmd) > $@ cmp $@ tst-array1.exp > /dev/null $(objpfx)tst-array2: $(objpfx)tst-array2dep.so -$(objpfx)tst-array2.out: $(objpfx)tst-array2 - $(elf-objpfx)$(rtld-installed-name) \ - --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \ - $(objpfx)tst-array2 > $@ +$(objpfx)tst-array2.out: tst-array2.exp $(objpfx)tst-array2 + $(built-program-cmd) > $@ cmp $@ tst-array2.exp > /dev/null -$(objpfx)tst-array3.out: $(objpfx)tst-array3 - $(elf-objpfx)$(rtld-installed-name) \ - --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \ - $(objpfx)tst-array3 > $@ +$(objpfx)tst-array3.out: tst-array1.exp $(objpfx)tst-array3 + $(built-program-cmd) > $@ cmp $@ tst-array1.exp > /dev/null $(objpfx)tst-array4: $(libdl) -$(objpfx)tst-array4.out: $(objpfx)tst-array4 $(objpfx)tst-array2dep.so - $(elf-objpfx)$(rtld-installed-name) \ - --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \ - $< > $@ +$(objpfx)tst-array4.out: tst-array4.exp $(objpfx)tst-array4 \ + $(objpfx)tst-array2dep.so + $(built-program-cmd) > $@ cmp $@ tst-array4.exp > /dev/null $(objpfx)tst-array5: $(objpfx)tst-array5dep.so -$(objpfx)tst-array5.out: $(objpfx)tst-array5 - $(elf-objpfx)$(rtld-installed-name) \ - --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path)) \ - $(objpfx)tst-array5 > $@ +$(objpfx)tst-array5.out: tst-array5.exp $(objpfx)tst-array5 + $(built-program-cmd) > $@ cmp $@ tst-array5.exp > /dev/null -$(objpfx)tst-array5-static.out: $(objpfx)tst-array5-static - $(objpfx)tst-array5-static > $@ +$(objpfx)tst-array5-static.out: tst-array5-static.exp \ + $(objpfx)tst-array5-static + $(built-program-cmd) > $@ cmp $@ tst-array5-static.exp > /dev/null CFLAGS-tst-pie1.c += $(pie-ccflag) |