From 4b31e99b8f254c93af6acb9746dcd68109e5957f Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 3 Jul 2010 15:44:12 +0000 Subject: portability fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28535 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/io/console/test_io_console.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/io/console') diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb index adf806556b..fdeea60399 100644 --- a/test/io/console/test_io_console.rb +++ b/test/io/console/test_io_console.rb @@ -138,7 +138,10 @@ class TestIO_Console < Test::Unit::TestCase def test_winsize PTY.open {|m, s| - assert_equal([0, 0], s.winsize) + begin + assert_equal([0, 0], s.winsize) + rescue Errno::EINVAL # OpenSolaris 2009.06 TIOCGWINSZ causes Errno::EINVAL before TIOCSWINSZ. + end } end end -- cgit v1.2.3