Browse Source

add -fPIC to some tests.

This is required to avoid a assertion error in binutils 2.24
for m68k.
Waldemar Brodkorb 9 years ago
parent
commit
687042ce08

+ 1 - 0
test/assert/Makefile.in

@@ -3,3 +3,4 @@
 
 RET_assert     := 134
 WRAPPER_assert := trap ":" ABRT ;
+CFLAGS_assert := -fPIC

+ 1 - 0
test/ctype/Makefile.in

@@ -2,3 +2,4 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 
 TESTS := ctype
+CFLAGS_ctype = -fPIC

+ 3 - 0
test/inet/Makefile.in

@@ -15,3 +15,6 @@ TESTS_DISABLED += tst-res
 else
 LDFLAGS_tst-res_glibc := -lresolv # assume it's glibc or somebody with that lib
 endif
+
+CFLAGS_bug-if1 = -fPIC
+CFLAGS_tst-sock-nonblock = -fPIC

+ 1 - 1
test/locale-mbwc/Makefile.in

@@ -23,5 +23,5 @@ TESTS_DISABLED := tst_strfmon
 
 DODIFF_rint     := 1
 
-EXTRA_CFLAGS    := -D__USE_GNU -fno-builtin
+EXTRA_CFLAGS    := -D__USE_GNU -fno-builtin -fPIC
 

+ 2 - 0
test/malloc/Makefile.in

@@ -10,3 +10,5 @@ endif
 ifneq ($(UCLIBC_HAS_OBSTACK),y)
 TESTS_DISABLED += tst-obstack
 endif
+
+CFLAGS_tst-mallocfork = -fPIC

+ 5 - 0
test/misc/Makefile.in

@@ -32,3 +32,8 @@ OPTS_tst-fnmatch := < tst-fnmatch.input
 MNTENTS = $(shell mount | while read dev on mp rest; do echo $$mp; done)
 OPTS_tst-statfs := $(MNTENTS)
 OPTS_tst-statvfs := $(MNTENTS)
+
+CFLAGS_bug-glob2 = -fPIC
+CFLAGS_opendir-tst1 = -fPIC
+CFLAGS_tst-inotify = -fPIC
+CFLAGS_tst-utmp = -fPIC

+ 1 - 0
test/regex/Makefile.in

@@ -0,0 +1 @@
+CFLAGS_tst-regex2 = -fPIC

+ 1 - 0
test/setjmp/Makefile.in

@@ -0,0 +1 @@
+CFLAGS_bug269-setjmp = -fPIC

+ 4 - 0
test/signal/Makefile.in

@@ -4,3 +4,7 @@
 ifeq ($(UCLIBC_HAS_OBSOLETE_BSD_SIGNAL),)
 TESTS_DISABLED := tst-sigsimple
 endif
+
+CFLAGS_tst-signalfd = -fPIC
+CFLAGS_tst-sigset = -fPIC
+CFLAGS_tst-sigsimple = -fPIC

+ 4 - 0
test/stdlib/Makefile.in

@@ -10,3 +10,7 @@ TESTS_DISABLED :=
 ifeq ($(UCLIBC_HAS_PTY),)
 TESTS_DISABLED += ptytest
 endif
+
+CFLAGS_test-canon = -fPIC
+CFLAGS_test-canon2 = -fPIC
+CFLAGS_testatexit = -fPIC

+ 4 - 0
test/time/Makefile.in

@@ -17,5 +17,9 @@ TESTS_DISABLED += tst_wcsftime
 endif
 
 CFLAGS_tst-strptime2 := -std=c99
+CFLAGS_tst-ctime = -fPIC
+CFLAGS_tst-futimens1 = -fPIC
+CFLAGS_tst-timerfd = -fPIC
+
 DODIFF_futimens1 := 1
 DODIFF_tst_wcsftime := 1

+ 7 - 2
test/unistd/Makefile.in

@@ -4,7 +4,7 @@
 TESTS_DISABLED :=
 # If LFS is not set, get rid of all *64 tests up front
 ifeq ($(UCLIBC_HAS_LFS),)
-TESTS_DISABLED += tst-preadwrite64 tst-fallocate64
+TESTS_DISABLED += tst-preadwrite64
 endif
 
 # If we don't have LINUX_SPECIFIC, then get rid of tst-fallocate
@@ -32,7 +32,12 @@ OPTS_tstgetopt   := -a -b -cfoobar --required foobar --optional=bazbug --none --
 endif
 
 # for embedded systems 4 GB disk space is not available
-TESTS_DISABLED += tst-posix_fallocate64
+TESTS_DISABLED += tst-posix_fallocate64 tst-fallocate64
+
+CFLAGS_tst-fallocate = -fPIC
+CFLAGS_tst-posix_fallocate = -fPIC
+CFLAGS_tst-preadwrite = -fPIC
+CFLAGS_tst-preadwrite64 = -fPIC
 
 # getconf.c lives in utils/
 # Testsuite cannot currently be built with O= anyway, so hardcode path here