summaryrefslogtreecommitdiff
path: root/test/tls/tst-tlsmod17a.c
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2009-12-03 13:29:53 +0100
committerCarmelo Amoroso <carmelo.amoroso@st.com>2009-12-03 13:29:53 +0100
commitb93ab6041d56a5a19d8a97b69f6e3202fd11e859 (patch)
treee1c866630d69fd818e1d7ba08da63094d0731923 /test/tls/tst-tlsmod17a.c
parentac08946e0c09c25143d4cc49abdf0281bb81bd8d (diff)
test_tls: Add two new tests for tls tst-tls{16,17} taken from glibc
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'test/tls/tst-tlsmod17a.c')
-rw-r--r--test/tls/tst-tlsmod17a.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/tls/tst-tlsmod17a.c b/test/tls/tst-tlsmod17a.c
new file mode 100644
index 000000000..eb599e726
--- /dev/null
+++ b/test/tls/tst-tlsmod17a.c
@@ -0,0 +1,23 @@
+#include <stdio.h>
+
+#ifndef N
+#define N 0
+#endif
+#define CONCAT1(s, n) s##n
+#define CONCAT(s, n) CONCAT1(s, n)
+
+__thread int CONCAT (v, N) = 4;
+
+int
+CONCAT (tlsmod17a, N) (void)
+{
+ int *p = &CONCAT (v, N);
+ /* GCC assumes &var is never NULL, add optimization barrier. */
+ __asm __volatile ("" : "+r" (p));
+ if (p == NULL || *p != 4)
+ {
+ printf ("fail %d %p\n", N, p);
+ return 1;
+ }
+ return 0;
+}