aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-12-01 08:02:06 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-09 20:54:52 +0900
commit63872c7e31b7a183d8fd0caec2878ea9c4b73ef3 (patch)
treea05350c9c4cbe251afca1d48548a8b98e49d039e
parentb6bae0ec4433bcea6ba94a50de344c2e3b90fee9 (diff)
downloadruby-63872c7e31b7a183d8fd0caec2878ea9c4b73ef3.tar.gz
[ruby/gdbm] Workaround for GitHub Actions
https://github.com/ruby/gdbm/commit/f42103fe93
-rw-r--r--test/gdbm/test_gdbm.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index 64692a4465..e02282b451 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -143,7 +143,7 @@ if defined? GDBM
def open_db_child(dbname, *opts)
opts = [0644, *opts].map(&:inspect).join(', ')
- args = [EnvUtil.rubybin, "-rgdbm", "-e", <<-SRC, dbname]
+ args = [EnvUtil.rubybin, "-Ilib", "-rgdbm", "-e", <<-SRC, dbname]
STDOUT.sync = true
gdbm = GDBM.open(ARGV.shift, #{opts})
puts gdbm.class