diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-10 17:15:33 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-10 17:15:33 +0000 |
commit | e53a96c2136f7cdff4699475fea41afeed9dece3 (patch) | |
tree | 6ddb9d0712828bdab643952423e5c1d07f00faa7 /libitm/testsuite/libitm.c | |
parent | b8190fde2cd04078f8448576fb021060526b51d5 (diff) | |
download | ppe42-gcc-e53a96c2136f7cdff4699475fea41afeed9dece3.tar.gz ppe42-gcc-e53a96c2136f7cdff4699475fea41afeed9dece3.zip |
libitm port to Tru64 UNIX
* config/alpha/sjlj.S (_ITM_beginTransaction) [!__ELF__]: Don't use
.hidden.
(.note.GNU-stack): Only use if __linux__.
* alloc_cpp.cc [!__osf__] (_ZnaXRKSt9nothrow_t): Dummy function.
* testsuite/libitm.c/notx.c: Use dg-options "-pthread".
* testsuite/libitm.c/reentrant.c: Likewise.
* testsuite/libitm.c/simple-2.c: Likewise.
* testsuite/libitm.c/txrelease.c: Likewise.
* testsuite/libitm.c++/static_ctor.C: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181262 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libitm/testsuite/libitm.c')
-rw-r--r-- | libitm/testsuite/libitm.c/notx.c | 3 | ||||
-rw-r--r-- | libitm/testsuite/libitm.c/reentrant.c | 1 | ||||
-rw-r--r-- | libitm/testsuite/libitm.c/simple-2.c | 2 | ||||
-rw-r--r-- | libitm/testsuite/libitm.c/txrelease.c | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/libitm/testsuite/libitm.c/notx.c b/libitm/testsuite/libitm.c/notx.c index 999da025a82..7ca6580452b 100644 --- a/libitm/testsuite/libitm.c/notx.c +++ b/libitm/testsuite/libitm.c/notx.c @@ -1,5 +1,8 @@ /* These tests all check whether initialization happens properly even if no transaction has been used in the current thread yet. */ + +/* { dg-options "-pthread" } */ + #include <stdlib.h> #include <pthread.h> #include <libitm.h> diff --git a/libitm/testsuite/libitm.c/reentrant.c b/libitm/testsuite/libitm.c/reentrant.c index 007bbaab741..451530a55ab 100644 --- a/libitm/testsuite/libitm.c/reentrant.c +++ b/libitm/testsuite/libitm.c/reentrant.c @@ -1,4 +1,5 @@ /* { dg-do run { xfail *-*-* } } +/* { dg-options "-pthread" } */ /* Tests that new transactions can be started from both transaction_pure and transaction_unsafe code. This also requires proper handling of reentrant diff --git a/libitm/testsuite/libitm.c/simple-2.c b/libitm/testsuite/libitm.c/simple-2.c index e92c917340d..c77d75dcf51 100644 --- a/libitm/testsuite/libitm.c/simple-2.c +++ b/libitm/testsuite/libitm.c/simple-2.c @@ -1,5 +1,7 @@ /* Simplest test involving real threads. Verify we get the correct answer. */ +/* { dg-options "-pthread" } */ + #include <stdlib.h> #include <pthread.h> diff --git a/libitm/testsuite/libitm.c/txrelease.c b/libitm/testsuite/libitm.c/txrelease.c index 7bf04343d57..37d6b2c9d00 100644 --- a/libitm/testsuite/libitm.c/txrelease.c +++ b/libitm/testsuite/libitm.c/txrelease.c @@ -2,6 +2,8 @@ transaction data when a thread exists, potentially repeatedly. However, we currently cannot check whether the data has indeed been released. */ +/* { dg-options "-pthread" } */ + #include <stddef.h> #include <stdlib.h> #include <pthread.h> |