summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-06-10 10:13:43 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-06-10 10:20:02 -0500
commit3dc45e6498755f5b7afcbdf15ae73f427dfedfab (patch)
tree8bfa94d622b45fa03d56f2b9b3df2bc269d194ef /test
parent8c62ce0c041059b4b9b823d70cb7073f82ddd1c6 (diff)
disable silly test for mips/sparc
Diffstat (limited to 'test')
-rw-r--r--test/silly/Makefile.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/test/silly/Makefile.in b/test/silly/Makefile.in
index 8e0e6d120..4f35368bf 100644
--- a/test/silly/Makefile.in
+++ b/test/silly/Makefile.in
@@ -4,9 +4,17 @@
RET_hello := 42
RET_tiny := 42
+ifeq ($(TARGET_ARCH),mips)
+TESTS_DISABLED += tst-atomic tst-atomic-long
+endif
+
+ifeq ($(TARGET_ARCH),sparc)
+TESTS_DISABLED += tst-atomic tst-atomic-long
+endif
+
atomic_headers := -I$(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH) \
-I$(top_srcdir)libc/sysdeps/linux \
-I$(top_builddir)include
-CFLAGS_tst-atomic = $(atomic_headers)
-CFLAGS_tst-atomic-long = $(atomic_headers)
+CFLAGS_tst-atomic = $(atomic_headers) -fPIC
+CFLAGS_tst-atomic-long = $(atomic_headers) -fPIC