Run some more tests with static only build
Andreas Jaeger
aj@suse.de
Tue Jul 25 03:07:00 GMT 2000
I've committed the appended patches to run some more tests when only
static binaries are build.
Andreas
2000-07-25 Andreas Jaeger <aj@suse.de>
* stdio-common/Makefile ($(objpfx)tst-unbputc.out): Change parameter
according to changes in test program, run also with static only
builds.
($(objpfx)tst-printf.out): Likewise.
* stdio-common/tst-unbputc.sh: Likewise.
* stdio-common/tst-printf.sh: Likewise.
============================================================
Index: stdio-common/Makefile
--- stdio-common/Makefile 2000/07/10 13:51:17 1.53
+++ stdio-common/Makefile 2000/07/25 09:29:53
@@ -60,18 +60,16 @@
include ../Rules
-ifeq (yes,$(build-shared))
.PHONY: do-tst-unbputc do-tst-printf
tests: do-tst-unbputc do-tst-printf
do-tst-unbputc: $(objpfx)tst-unbputc.out
$(objpfx)tst-unbputc.out: $(objpfx)tst-unbputc tst-unbputc.sh
- $(SHELL) -e tst-unbputc.sh $(common-objpfx)
+ $(SHELL) -e tst-unbputc.sh $(common-objpfx) '$(run-program-prefix)'
do-tst-printf: $(objpfx)tst-printf.out
$(objpfx)tst-printf.out: $(objpfx)tst-printf tst-printf.sh
- $(SHELL) -e tst-printf.sh $(common-objpfx)
-endif
+ $(SHELL) -e tst-printf.sh $(common-objpfx) '$(run-program-prefix)'
CFLAGS-vfprintf.c = -Wno-uninitialized
CFLAGS-tst-printf.c = -Wno-format
============================================================
Index: stdio-common/tst-unbputc.sh
--- stdio-common/tst-unbputc.sh 2000/07/03 23:12:53 1.2
+++ stdio-common/tst-unbputc.sh 2000/07/25 09:29:53
@@ -19,10 +19,11 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
common_objpfx=$1; shift
+run_program_prefix=$1; shift
status=0
-${common_objpfx}elf/ld.so --library-path $common_objpfx \
+${run_program_prefix} \
${common_objpfx}stdio-common/tst-unbputc \
2> ${common_objpfx}stdio-common/tst-unbputc.out || status=1
============================================================
Index: stdio-common/tst-printf.sh
--- stdio-common/tst-printf.sh 2000/07/07 21:01:00 1.1
+++ stdio-common/tst-printf.sh 2000/07/25 09:29:53
@@ -19,11 +19,12 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
common_objpfx=$1; shift
+run_program_prefix=$1; shift
status=0
LOCPATH=${common_objpfx}localedata GCONV_PATH=${common_objpfx}iconvdata \
-${common_objpfx}elf/ld.so --library-path $common_objpfx \
+${run_program_prefix} \
${common_objpfx}stdio-common/tst-printf \
> ${common_objpfx}stdio-common/tst-printf.out || status=1
--
Andreas Jaeger
SuSE Labs aj@suse.de
private aj@arthur.inka.de
More information about the Libc-hacker
mailing list