about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2016-08-17 16:14:02 +0200
committerFlorian Weimer <fweimer@redhat.com>2016-08-18 13:06:01 +0200
commit2eda04ec6f55d2a622481aeb51e4c42cf1607995 (patch)
tree6bf804ae3337010e89946fcba3cf18702984a688
parenta86b1fac2883617c24d719af125c473635bb5ac5 (diff)
downloadglibc-2eda04ec6f55d2a622481aeb51e4c42cf1607995.tar.gz
glibc-2eda04ec6f55d2a622481aeb51e4c42cf1607995.tar.xz
glibc-2eda04ec6f55d2a622481aeb51e4c42cf1607995.zip
nptl/tst-once5: Reduce time to expected failure
(cherry picked from commit 1f645571d2db9008b3cd3d5acb9ff93357864283)
-rw-r--r--ChangeLog5
-rw-r--r--nptl/tst-once5.cc2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fa3f28eb53..a685e2a182 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-08-17  Florian Weimer  <fweimer@redhat.com>
+
+	Reduce time to expected nptl/tst-once5 failure.
+	* nptl/tst-once5.cc (TIMEOUT): Define.
+
 2016-08-18  Florian Weimer  <fweimer@redhat.com>
 
 	[BZ #16907]
diff --git a/nptl/tst-once5.cc b/nptl/tst-once5.cc
index 978d8271bd..513ac53f6f 100644
--- a/nptl/tst-once5.cc
+++ b/nptl/tst-once5.cc
@@ -75,5 +75,7 @@ do_test (void)
   return result;
 }
 
+// The test currently hangs and is XFAILed.  Reduce the timeout.
+#define TIMEOUT 1
 #define TEST_FUNCTION do_test ()
 #include "../test-skeleton.c"