summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/io/console/test_io_console.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index 96e340ca67..150d7572db 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -262,8 +262,7 @@ class TestIO_Console < Test::Unit::TestCase
t.close
t2 = Tempfile.new("console")
t2.close
- cmd = NOCTTY + [
- '--disable=gems',
+ cmd = [*NOCTTY[1..-1],
'-e', 'open(ARGV[0], "w") {|f|',
'-e', 'STDOUT.reopen(f)',
'-e', 'STDERR.reopen(f)',
@@ -273,7 +272,7 @@ class TestIO_Console < Test::Unit::TestCase
'-e', 'File.unlink(ARGV[1])',
'-e', '}',
'--', t.path, t2.path]
- system(*cmd)
+ assert_ruby_status(cmd, rubybin: NOCTTY[0])
30.times do
break unless File.exist?(t2.path)
sleep 0.1