diff options
author | Joseph Myers <joseph@codesourcery.com> | 2008-02-26 00:11:06 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2008-02-26 00:11:06 +0000 |
commit | eb587f4f71b81ae9eb0951799ce22a21773a3c3b (patch) | |
tree | f6e1e829d7b9f92ea235eef8514884892da570b7 | |
parent | 683d6ff954e871028b34e8bd5e9fdda491ec2cbf (diff) | |
download | gcc-eb587f4f71b81ae9eb0951799ce22a21773a3c3b.zip gcc-eb587f4f71b81ae9eb0951799ce22a21773a3c3b.tar.gz gcc-eb587f4f71b81ae9eb0951799ce22a21773a3c3b.tar.bz2 |
target-supports.exp (check_effective_target_pthread_h): New.
* lib/target-supports.exp (check_effective_target_pthread_h): New.
* gcc.dg/pthread-init-1.c, gcc.dg/pthread-init-2.c: Use
dg-require-effective-target pthread_h.
From-SVN: r132650
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pthread-init-1.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pthread-init-2.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/lib/target-supports.exp | 8 |
4 files changed, 16 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 074e436..db11e64 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2008-02-25 Joseph Myers <joseph@codesourcery.com> + + * lib/target-supports.exp (check_effective_target_pthread_h): New. + * gcc.dg/pthread-init-1.c, gcc.dg/pthread-init-2.c: Use + dg-require-effective-target pthread_h. + 2008-02-26 Manuel Lopez-Ibanez <manu@gcc.gnu.org> * gcc.dg/Wswitch-enum-error.c: New. diff --git a/gcc/testsuite/gcc.dg/pthread-init-1.c b/gcc/testsuite/gcc.dg/pthread-init-1.c index 9cf4fa3..2f78844 100644 --- a/gcc/testsuite/gcc.dg/pthread-init-1.c +++ b/gcc/testsuite/gcc.dg/pthread-init-1.c @@ -5,6 +5,7 @@ */ /* { dg-do compile } */ +/* { dg-require-effective-target pthread_h } */ /* { dg-options "-Wextra -Wall" } */ #include "pthread-init-common.h" diff --git a/gcc/testsuite/gcc.dg/pthread-init-2.c b/gcc/testsuite/gcc.dg/pthread-init-2.c index 6fc427f..2e1b93a 100644 --- a/gcc/testsuite/gcc.dg/pthread-init-2.c +++ b/gcc/testsuite/gcc.dg/pthread-init-2.c @@ -5,6 +5,7 @@ */ /* { dg-do compile } */ +/* { dg-require-effective-target pthread_h } */ /* { dg-options "-Wextra -Wall -ansi" } */ /* { dg-options "-Wextra -Wall -ansi -D_POSIX_C_SOURCE=199506L" { target { *-*-hpux* *-*-solaris2.5.1 } } } */ diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index ba1454e..c43a371 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -2214,6 +2214,14 @@ proc check_effective_target_wchar { } { }] } +# Return 1 if the target has <pthread.h>. + +proc check_effective_target_pthread_h { } { + return [check_no_compiler_messages pthread_h assembly { + #include <pthread.h> + }] +} + # Add to FLAGS all the target-specific flags needed to access the c99 runtime. proc add_options_for_c99_runtime { flags } { |