aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pty.rb
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-19 06:08:44 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-03-19 06:08:44 +0000
commitd4f0f28430c29d6d33621852640fbbccdd666b65 (patch)
tree7a0efbdf3a773a3c0d3872fc6d93acff4dce24a6 /test/test_pty.rb
parent27c538987932686105b958433cce4914043cd30d (diff)
downloadruby-d4f0f28430c29d6d33621852640fbbccdd666b65.tar.gz
* test/test_pty.rb: same as r29280, skip tests when PTY allocation
failed (that's not our fault). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/test_pty.rb')
-rw-r--r--test/test_pty.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_pty.rb b/test/test_pty.rb
index 122fb6c13b..0b05c62477 100644
--- a/test/test_pty.rb
+++ b/test/test_pty.rb
@@ -176,6 +176,9 @@ class TestPTY < Test::Unit::TestCase
sleep(0.1)
end until st2 = PTY.check(pid)
end
+ rescue RuntimeError
+ skip $!
+ else
assert_equal(pid, st1.pid) if st1
assert_nil(st1)
assert_equal(pid, st2.pid)
@@ -192,6 +195,9 @@ class TestPTY < Test::Unit::TestCase
sleep(0.1)
st2 = assert_raise(PTY::ChildExited, bug2642) {PTY.check(pid, true)}.status
end
+ rescue RuntimeError
+ skip $!
+ else
assert_equal(pid, st1.pid) if st1
assert_nil(st1)
assert_equal(pid, st2.pid)
@@ -206,6 +212,8 @@ class TestPTY < Test::Unit::TestCase
assert(r.close_on_exec?)
assert(w.close_on_exec?)
}
+ rescue RuntimeError
+ skip $!
end
end if defined? PTY