diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 78e7a0e15f7..08f0ecfc1c4 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -675,6 +675,8 @@ def test_communicate_epipe_only_stdin(self): time.sleep(2) p.communicate(b"x" * 2**20) + @unittest.skipUnless(hasattr(signal, 'SIGALRM'), + "Requires signal.SIGALRM") def test_communicate_eintr(self): # Issue #12493: communicate() should handle EINTR def handler(signum, frame):