From e939a5c29f3ca57e852d69cbecac2936035e96c7 Mon Sep 17 00:00:00 2001 From: aycabta Date: Wed, 19 Aug 2020 11:09:18 +0900 Subject: [PATCH] Use "in" and "out" options of "system" instead of "replace_stdio" --- test/irb/test_history.rb | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/test/irb/test_history.rb b/test/irb/test_history.rb index f9193e553a..b811bbe273 100644 --- a/test/irb/test_history.rb +++ b/test/irb/test_history.rb @@ -119,9 +119,7 @@ module TestIRB yield(stdin, stdout) stdin.close stdout.flush - replace_stdio(stdin.path, stdout.path) do - system('ruby', '-Ilib', '-Itest', '-W0', '-rirb', '-e', 'IRB.start(__FILE__)') - end + system('ruby', '-Ilib', '-Itest', '-W0', '-rirb', '-e', 'IRB.start(__FILE__)', in: stdin.path, out: stdout.path) result = stdout.read stdout.close end @@ -147,30 +145,5 @@ module TestIRB end end end - - def replace_stdio(stdin_path, stdout_path) - open(stdin_path, "r") do |stdin| - open(stdout_path, "w") do |stdout| - orig_stdin = STDIN.dup - orig_stdout = STDOUT.dup - orig_stderr = STDERR.dup - STDIN.reopen(stdin) - STDOUT.reopen(stdout) - STDERR.reopen(stdout) - begin - #Readline.input = STDIN - #Readline.output = STDOUT - yield - ensure - STDERR.reopen(orig_stderr) - STDIN.reopen(orig_stdin) - STDOUT.reopen(orig_stdout) - orig_stdin.close - orig_stdout.close - orig_stderr.close - end - end - end - end end end