diff options
| author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-26 00:11:06 +0000 |
|---|---|---|
| committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-26 00:11:06 +0000 |
| commit | 218fb16a0b21dd488fd09667ddc4e243e6d8847a (patch) | |
| tree | f6e1e829d7b9f92ea235eef8514884892da570b7 | |
| parent | 6cbbbc890f416e20853af206510a93ecd5979c17 (diff) | |
| download | ppe42-gcc-218fb16a0b21dd488fd09667ddc4e243e6d8847a.tar.gz ppe42-gcc-218fb16a0b21dd488fd09667ddc4e243e6d8847a.zip | |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132650 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 074e43621b6..db11e64a8a1 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 9cf4fa3d35b..2f78844fe1f 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 6fc427fe2eb..2e1b93aecbf 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 ba1454eaab8..c43a37180c9 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 } { |

