about summary refs log tree commit diff
path: root/nptl
diff options
context:
space:
mode:
authorTorvald Riegel <triegel@redhat.com>2014-12-15 22:09:55 +0100
committerTorvald Riegel <triegel@redhat.com>2014-12-15 22:14:32 +0100
commit7f786dc12bd60f0a134e538429fef98350e4c814 (patch)
treef6f0489294e04eb78d54be9bb75feb3d9b16b1a0 /nptl
parente7e21cba127875de0357079ef44bd14a081b2964 (diff)
downloadglibc-7f786dc12bd60f0a134e538429fef98350e4c814.tar.gz
glibc-7f786dc12bd60f0a134e538429fef98350e4c814.tar.xz
glibc-7f786dc12bd60f0a134e538429fef98350e4c814.zip
Fix nptl/tst-mutex5.c: Do not skip tests if elision is enabled.
Diffstat (limited to 'nptl')
-rw-r--r--nptl/tst-mutex5.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/nptl/tst-mutex5.c b/nptl/tst-mutex5.c
index a829272741..6988840987 100644
--- a/nptl/tst-mutex5.c
+++ b/nptl/tst-mutex5.c
@@ -86,8 +86,6 @@ do_test (void)
       return 1;
     }
 
-  /* Elided locks do not time out.  */
-#ifndef ENABLE_LOCK_ELISION
   if (pthread_mutex_trylock (&m) == 0)
     {
       puts ("mutex_trylock succeeded");
@@ -183,7 +181,6 @@ do_test (void)
       puts ("3rd timedlock didn't return right away");
       return 1;
     }
-#endif
 
   if (pthread_mutex_unlock (&m) != 0)
     {