summaryrefslogtreecommitdiff
path: root/test/io
diff options
context:
space:
mode:
authorCharles Oliver Nutter <headius@headius.com>2020-01-13 13:42:56 -0600
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-01-18 00:15:00 +0900
commit569f56e0f74e29924a63579e77e3e60411dc0479 (patch)
treed499a2df75acae58fdbf8513cffea0e8ae2a7f07 /test/io
parent4e1a7678cdb9c14c0299d893673d9cb07293b78d (diff)
[ruby/io-console] Filter Ruby engine name rather than just /ruby/
This breaks tests using this path on JRuby because the `jruby` executable turns into `jjruby` after the sub. https://github.com/ruby/io-console/commit/e5951aa34c
Diffstat (limited to 'test/io')
-rw-r--r--test/io/console/test_io_console.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/console/test_io_console.rb b/test/io/console/test_io_console.rb
index 77c6dac5a6..a02605dd1e 100644
--- a/test/io/console/test_io_console.rb
+++ b/test/io/console/test_io_console.rb
@@ -462,7 +462,7 @@ defined?(IO.console) and TestIO_Console.class_eval do
noctty = [EnvUtil.rubybin, "-e", "Process.daemon(true)"]
when !(rubyw = RbConfig::CONFIG["RUBYW_INSTALL_NAME"]).empty?
dir, base = File.split(EnvUtil.rubybin)
- noctty = [File.join(dir, base.sub(/ruby/, rubyw))]
+ noctty = [File.join(dir, base.sub(RUBY_ENGINE, rubyw))]
end
if noctty