diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/tls/run-le.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/tls/thr-init-1.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/tls/thr-init-2.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/tls/tls-test.c | 1 |
5 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 883d355..a102060 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2011-06-22 Uros Bizjak <ubizjak@gmail.com> + + * gcc.dg/torture/tls/run-le.c: Skip for -pie on alpha*-*-linux*. + * gcc.dg/torture/tls/tls-test.c: Ditto. + * gcc.dg/torture/tls/thr-init-1.c: Ditto. + * gcc.dg/torture/tls/thr-init-2.c: Ditto. + 2011-06-22 Nathan Sidwell <nathan@codesourcery.com> * gcc.target/arm/tlscall.c: New. diff --git a/gcc/testsuite/gcc.dg/torture/tls/run-le.c b/gcc/testsuite/gcc.dg/torture/tls/run-le.c index 0c340f3..f57d698c 100644 --- a/gcc/testsuite/gcc.dg/torture/tls/run-le.c +++ b/gcc/testsuite/gcc.dg/torture/tls/run-le.c @@ -1,6 +1,7 @@ /* { dg-do run } */ /* { dg-require-effective-target tls_runtime } */ /* { dg-add-options tls } */ +/* { dg-skip-if "TLS local exec code cannot be linked into shared objects" { alpha*-*-linux* } { "-pie" } { "" } } */ extern void abort (void); diff --git a/gcc/testsuite/gcc.dg/torture/tls/thr-init-1.c b/gcc/testsuite/gcc.dg/torture/tls/thr-init-1.c index ff3338f..03da9be 100644 --- a/gcc/testsuite/gcc.dg/torture/tls/thr-init-1.c +++ b/gcc/testsuite/gcc.dg/torture/tls/thr-init-1.c @@ -1,6 +1,7 @@ /* { dg-do run } */ /* { dg-require-effective-target tls_runtime } */ /* { dg-add-options tls } */ +/* { dg-skip-if "TLS local exec code cannot be linked into shared objects" { alpha*-*-linux* } { "-pie" } { "" } } */ extern int printf (char *,...); extern void abort() ; diff --git a/gcc/testsuite/gcc.dg/torture/tls/thr-init-2.c b/gcc/testsuite/gcc.dg/torture/tls/thr-init-2.c index 4415623..211afdc 100644 --- a/gcc/testsuite/gcc.dg/torture/tls/thr-init-2.c +++ b/gcc/testsuite/gcc.dg/torture/tls/thr-init-2.c @@ -1,6 +1,7 @@ /* { dg-do run } */ /* { dg-require-effective-target tls_runtime } */ /* { dg-add-options tls } */ +/* { dg-skip-if "TLS local exec code cannot be linked into shared objects" { alpha*-*-linux* } { "-pie" } { "" } } */ extern int printf (char *,...); extern void abort() ; diff --git a/gcc/testsuite/gcc.dg/torture/tls/tls-test.c b/gcc/testsuite/gcc.dg/torture/tls/tls-test.c index 8a23e77..f772b80 100644 --- a/gcc/testsuite/gcc.dg/torture/tls/tls-test.c +++ b/gcc/testsuite/gcc.dg/torture/tls/tls-test.c @@ -2,6 +2,7 @@ /* { dg-require-effective-target tls } */ /* { dg-require-effective-target pthread } */ /* { dg-options "-pthread" } */ +/* { dg-skip-if "TLS local exec code cannot be linked into shared objects" { alpha*-*-linux* } { "-pie" } { "" } } */ #include <pthread.h> extern int printf (char *,...); |