OSDN Git Service

add -fPIC to some tests.
authorWaldemar Brodkorb <wbx@openadk.org>
Sun, 4 Jan 2015 15:05:12 +0000 (09:05 -0600)
committerWaldemar Brodkorb <wbx@openadk.org>
Sun, 4 Jan 2015 15:05:12 +0000 (09:05 -0600)
This is required to avoid a assertion error in binutils 2.24
for m68k.

12 files changed:
test/assert/Makefile.in
test/ctype/Makefile.in
test/inet/Makefile.in
test/locale-mbwc/Makefile.in
test/malloc/Makefile.in
test/misc/Makefile.in
test/regex/Makefile.in [new file with mode: 0644]
test/setjmp/Makefile.in [new file with mode: 0644]
test/signal/Makefile.in
test/stdlib/Makefile.in
test/time/Makefile.in
test/unistd/Makefile.in

index 8e3514f..3f4fb4d 100644 (file)
@@ -3,3 +3,4 @@
 
 RET_assert     := 134
 WRAPPER_assert := trap ":" ABRT ;
+CFLAGS_assert := -fPIC
index ee10d59..041e851 100644 (file)
@@ -2,3 +2,4 @@
 # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 
 TESTS := ctype
+CFLAGS_ctype = -fPIC
index 2c84729..38aec61 100644 (file)
@@ -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
index 7c0e9d5..e70a613 100644 (file)
@@ -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
 
index 669ef6a..f1726dd 100644 (file)
@@ -10,3 +10,5 @@ endif
 ifneq ($(UCLIBC_HAS_OBSTACK),y)
 TESTS_DISABLED += tst-obstack
 endif
+
+CFLAGS_tst-mallocfork = -fPIC
index 04b677f..345889e 100644 (file)
@@ -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
diff --git a/test/regex/Makefile.in b/test/regex/Makefile.in
new file mode 100644 (file)
index 0000000..1573840
--- /dev/null
@@ -0,0 +1 @@
+CFLAGS_tst-regex2 = -fPIC
diff --git a/test/setjmp/Makefile.in b/test/setjmp/Makefile.in
new file mode 100644 (file)
index 0000000..a5b7b59
--- /dev/null
@@ -0,0 +1 @@
+CFLAGS_bug269-setjmp = -fPIC
index c8e2545..27791a9 100644 (file)
@@ -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
index 135db6b..38c3e19 100644 (file)
@@ -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
index 83bc07d..8afc013 100644 (file)
@@ -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
index 6f8a274..da59a36 100644 (file)
@@ -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