ruby-changes:68366
From: Nobuyoshi <ko1@a...>
Date: Mon, 11 Oct 2021 11:33:43 +0900 (JST)
Subject: [ruby-changes:68366] b9f7286fe9 (master): [ruby/io-console] Skip Interrupt test on Solaris too
https://git.ruby-lang.org/ruby.git/commit/?id=b9f7286fe9 From b9f7286fe95827631b11342501e471e5e6f13bbb Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Mon, 11 Oct 2021 10:47:51 +0900 Subject: [ruby/io-console] Skip Interrupt test on Solaris too https://github.com/ruby/io-console/commit/48db3616da --- test/io/console/test_io_console.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb index 3d12b1f463..d119ec23e0 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -375,7 +375,7 @@ defined?(PTY) and defined?(IO.console) and TestIO_Console.class_eval do https://github.com/ruby/ruby/blob/trunk/test/io/console/test_io_console.rb#L375 if cc = ctrl["intr"] assert_ctrl("#{cc.ord}", cc, r, w) assert_ctrl("#{cc.ord}", cc, r, w) - assert_ctrl("Interrupt", cc, r, w) unless /linux/ =~ RUBY_PLATFORM + assert_ctrl("Interrupt", cc, r, w) unless /linux|solaris/ =~ RUBY_PLATFORM end if cc = ctrl["dsusp"] assert_ctrl("#{cc.ord}", cc, r, w) -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/