summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-12 07:46:26 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-12 07:46:26 +0000
commitbfd1b7929961fef3e6bc0e99eedf4967628af4e1 (patch)
tree37dfdb1698e0bc8b457591e0ea3fe6bc3409eda0
parent13617841625181fed57560d56fbb05326f5ec22e (diff)
merge revision(s) 57289: [Backport #13114]
test_io_console.rb: fix of old CentOS5 * test/io/console/test_io_console.rb (test_winsize): on old CentOS5 window size seems unable to be set across a pty. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@57897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/io/console/test_io_console.rb4
-rw-r--r--version.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index 581500dfd7..95917dd713 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -239,9 +239,9 @@ defined?(PTY) and defined?(IO.console) and TestIO_Console.class_eval do
else
assert_equal([80, 25], s.winsize = [80, 25])
assert_equal([80, 25], s.winsize)
- assert_equal([80, 25], m.winsize)
+ #assert_equal([80, 25], m.winsize)
assert_equal([100, 40], m.winsize = [100, 40])
- assert_equal([100, 40], s.winsize)
+ #assert_equal([100, 40], s.winsize)
assert_equal([100, 40], m.winsize)
end
}
diff --git a/version.h b/version.h
index 98974ea726..5fbf0e3e35 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.4.0"
#define RUBY_RELEASE_DATE "2017-03-12"
-#define RUBY_PATCHLEVEL 54
+#define RUBY_PATCHLEVEL 55
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3