aboutsummaryrefslogtreecommitdiff
path: root/elf
diff options
context:
space:
mode:
Diffstat (limited to 'elf')
-rw-r--r--elf/tst-tls14.c10
-rw-r--r--elf/tst-tlsmod14a.c5
2 files changed, 15 insertions, 0 deletions
diff --git a/elf/tst-tls14.c b/elf/tst-tls14.c
index 4ae367a..428fd52 100644
--- a/elf/tst-tls14.c
+++ b/elf/tst-tls14.c
@@ -4,6 +4,9 @@
#include <stdio.h>
#include <stdlib.h>
+#include <tls.h>
+
+#if USE_TLS && HAVE___THREAD
#define AL 4096
struct foo
@@ -53,4 +56,11 @@ do_test (void)
}
#define TEST_FUNCTION do_test ()
+
+#else
+
+#define TEST_FUNCTION 0
+
+#endif
+
#include "../test-skeleton.c"
diff --git a/elf/tst-tlsmod14a.c b/elf/tst-tlsmod14a.c
index 4843e59..0bb393d 100644
--- a/elf/tst-tlsmod14a.c
+++ b/elf/tst-tlsmod14a.c
@@ -1,6 +1,9 @@
#include <stdint.h>
#include <stdio.h>
+#include <tls.h>
+
+#if USE_TLS && HAVE___THREAD
#define AL 4096
struct foo
@@ -34,3 +37,5 @@ FCT (void)
return result;
}
+
+#endif