From b19043e8d03811f6a2a0d67e07a9da302c2ad352 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Thu, 11 Dec 2025 21:19:25 +0100 Subject: [PATCH] Skip signal test on windows Windows has no SIGUSR1. There might be another usable signal, but this is breaking ruby master so I just want a quick fix for now. --- test/test_timeout.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_timeout.rb b/test/test_timeout.rb index 7421b5b..199b18e 100644 --- a/test/test_timeout.rb +++ b/test/test_timeout.rb @@ -444,5 +444,5 @@ def test_timeout_in_trap_handler assert_equal "OK", rd.read rd.close - end + end if Signal.list["USR1"] # Windows has no SIGUSR1 end