diff options
author | Nobuyoshi Nakada <[email protected]> | 2021-10-11 10:47:51 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-10-11 11:33:15 +0900 |
commit | b9f7286fe95827631b11342501e471e5e6f13bbb (patch) | |
tree | df7a0360f91634438a0f684c035242ef861c52f1 /test/io/console/test_io_console.rb | |
parent | e0c20485db62f1c764b9902ad4e64658a9027632 (diff) |
[ruby/io-console] Skip Interrupt test on Solaris too
https://github.com/ruby/io-console/commit/48db3616da
Diffstat (limited to 'test/io/console/test_io_console.rb')
-rw-r--r-- | test/io/console/test_io_console.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 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) |