Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update test-unit and reline #13078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bootstraptest/test_ractor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ class C

1_000.times { idle_worker, tmp_reporter = Ractor.select(*workers) }
"ok"
} if !yjit_enabled? || ENV['GITHUB_WORKFLOW'] != 'ModGC' # flaky
} if !yjit_enabled? && ENV['GITHUB_WORKFLOW'] != 'ModGC' # flaky

assert_equal "ok", %q{
def foo(*); ->{ super }; end
Expand Down
4 changes: 2 additions & 2 deletions gems/bundled_gems
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
minitest 5.25.5 https://github.com/minitest/minitest
power_assert 2.0.5 https://github.com/ruby/power_assert
rake 13.2.1 https://github.com/ruby/rake
test-unit 3.6.7 https://github.com/test-unit/test-unit
test-unit 3.6.8 https://github.com/test-unit/test-unit
rexml 3.4.1 https://github.com/ruby/rexml
rss 0.3.1 https://github.com/ruby/rss
net-ftp 0.3.8 https://github.com/ruby/net-ftp
Expand Down Expand Up @@ -42,6 +42,6 @@ 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
irb 1.15.2 https://github.com/ruby/irb
reline 0.6.0 https://github.com/ruby/reline defcd36c0b6e6648333d4b9ab5923eb4e543615e
reline 0.6.1 https://github.com/ruby/reline
readline 0.0.4 https://github.com/ruby/readline
fiddle 1.1.6 https://github.com/ruby/fiddle
4 changes: 2 additions & 2 deletions tool/test-bundled-gems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

allowed_failures = ENV['TEST_BUNDLED_GEMS_ALLOW_FAILURES'] || ''
if RUBY_PLATFORM =~ /mswin|mingw/
allowed_failures = [allowed_failures, "rbs,debug,irb"].join(',')
allowed_failures = [allowed_failures, "win32ole,rbs,debug,irb"].join(',')
end
allowed_failures = allowed_failures.split(',').uniq.reject(&:empty?)

Expand Down Expand Up @@ -60,7 +60,7 @@
load_path = true

when "test-unit"
test_command = "#{ruby} -C #{gem_dir}/src/#{gem} test/run-test.rb"
test_command = "#{ruby} -C #{gem_dir}/src/#{gem} test/run.rb"

when "win32ole"
next unless /mswin|mingw/ =~ RUBY_PLATFORM
Expand Down
Loading