summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2025-04-09 15:18:50 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-04-09 15:51:08 +0900
commit9f61541f7624298be0c379ff61b66fc8470423e2 (patch)
treefd315ce0f56f9fce2bca94cc48f95772a5ac467f
parent8ab517698a76238d0afc7669b0ea1d5c6c1c0391 (diff)
Re-enabled to test at win32ole
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13087
-rw-r--r--gems/bundled_gems2
-rw-r--r--tool/test-bundled-gems.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/gems/bundled_gems b/gems/bundled_gems
index 99030f1e52..7c8f4f919d 100644
--- a/gems/bundled_gems
+++ b/gems/bundled_gems
@@ -40,7 +40,7 @@ pstore 0.2.0 https://github.com/ruby/pstore
benchmark 0.4.0 https://github.com/ruby/benchmark
logger 1.7.0 https://github.com/ruby/logger
rdoc 6.13.1 https://github.com/ruby/rdoc
-win32ole 1.9.1 https://github.com/ruby/win32ole
+win32ole 1.9.1 https://github.com/ruby/win32ole 654b712442b76d2c7729623982168b2f250e3a77
irb 1.15.2 https://github.com/ruby/irb
reline 0.6.1 https://github.com/ruby/reline
readline 0.0.4 https://github.com/ruby/readline
diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb
index b4571229ae..a71d7dce7e 100644
--- a/tool/test-bundled-gems.rb
+++ b/tool/test-bundled-gems.rb
@@ -10,7 +10,7 @@ github_actions = ENV["GITHUB_ACTIONS"] == "true"
allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
if RUBY_PLATFORM =~ /mswin|mingw/
- allowed_failures = [allowed_failures, "win32ole,rbs,debug,irb"].join(',')
+ allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)