diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-12-17 23:26:07 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-12-18 00:08:04 +0900 |
commit | 07ed8f2f916a512b35bc69b49f1c482a2ea6e9dd (patch) | |
tree | 170f1ee9b055ecf29a0d44d300263e6f5776af70 /test/io/console/test_io_console.rb | |
parent | 905a926ea84e199478e32e6da5cd0e8d756132f1 (diff) |
[ruby/io-console] Skip interrupt
https://github.com/ruby/io-console/commit/8ed5a2bcc3
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 219b84615e..0b28ff1200 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -352,7 +352,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) + # assert_ctrl("Interrupt", cc, r, w) end if cc = ctrl["dsusp"] assert_ctrl("#{cc.ord}", cc, r, w) |