re PR libitm/51171 (XFAIL: libitm.c/reentrant.c execution test)

PR other/51171
        * testsuite/libitm.c/reentrant.c: Remove xfail.
        (thread): Pass x to pure().

From-SVN: r182911
This commit is contained in:
Aldy Hernandez 2012-01-05 14:14:29 +00:00 committed by Aldy Hernandez
parent 6ad024b4c0
commit 1f53a8e6ab
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2012-01-05 Aldy Hernandez <aldyh@redhat.com>
PR other/51171
* testsuite/libitm.c/reentrant.c: Remove xfail.
(thread): Pass x to pure().
2011-12-24 Torvald Riegel <triegel@redhat.com>
* beginend.cc (GTM::gtm_thread::trycommit): Don't enforce

View File

@ -1,4 +1,4 @@
/* { dg-do run { xfail *-*-* } }
/* { dg-do run } */
/* { dg-options "-pthread" } */
/* Tests that new transactions can be started from both transaction_pure and
@ -36,7 +36,7 @@ int __attribute__((transaction_unsafe)) unsafe(int i)
static void *thread (void *dummy __attribute__((unused)))
{
__transaction_atomic {
pure(1);
pure(x);
}
__transaction_relaxed {
unsafe(1);