1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/io/console/test_io_console.rb (TestIO_Console#test_noctty):

split for each platforms.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32079 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-06-14 04:07:03 +00:00
parent b6135f1cd7
commit 7905fc1e54

View file

@ -168,18 +168,22 @@ end if defined?(PTY) and defined?(IO::console)
class TestIO_Console < Test::Unit::TestCase
require_relative '../../ruby/envutil'
case
when Process.respond_to?(:daemon)
def test_noctty
if Process.respond_to?(:daemon)
assert_in_out_err(["-rio/console"],
"Process.daemon(true, true); p IO.console",
["nil"])
elsif !(rubyw = RbConfig::CONFIG["RUBYW_INSTALL_NAME"]).empty?
end
when !(rubyw = RbConfig::CONFIG["RUBYW_INSTALL_NAME"]).empty?
require 'tempfile'
dir, base = File.split(EnvUtil.rubybin)
RUBYW = File.join(dir, base.sub(/ruby/, rubyw))
def test_noctty
t = Tempfile.new("console")
t.close
dir, base = File.split(EnvUtil.rubybin)
rubywbin = File.join(dir, base.sub(/ruby/, rubyw))
cmd = [rubywbin, '-rio/console', '-e', 'STDOUT.reopen(ARGV[0]); p IO.console', '--', t.path]
cmd = [RUBYW, '-rio/console', '-e', 'STDOUT.reopen(ARGV[0]); p IO.console', '--', t.path]
system(*cmd)
t.open
assert_equal("nil", t.gets.chomp)