From: Stefano Rivera <stefanor@debian.org>
Date: Sun, 26 Aug 2018 14:26:45 +0100
Subject: Skip test that deadlocks on GNU Hurd

---
 pypy/module/thread/test/test_lock.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pypy/module/thread/test/test_lock.py b/pypy/module/thread/test/test_lock.py
index 05c66fc..a37843c 100644
--- a/pypy/module/thread/test/test_lock.py
+++ b/pypy/module/thread/test/test_lock.py
@@ -181,6 +181,7 @@ class AppTestLockSignals(GenericTestThread):
     def w_alarm_interrupt(self, sig, frame):
         raise KeyboardInterrupt
 
+    @py.test.mark.skipif("sys.platform == 'gnu0'")
     def test_lock_acquire_interruption(self):
         import thread, signal, time
         # Mimic receiving a SIGINT (KeyboardInterrupt) with SIGALRM while stuck
